Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class SomeClass:
    SOME_CONST = "hello"
    SOME_OTHER_CONST = SomeClass.SOME_CONST + " world"

This doesn't work.

NameError: name 'SomeClass' is not defined

Is there any way to refer to the class within the class?

share|improve this question
1  
Is there any particular reason you need the class name, or do you just need access to the other class attributes? You treat it as just another variable in the same scope, e.g. SOME_OTHER_CONST = SOME_CONST – Darthfett Apr 6 '12 at 5:22
This question was asked a few days ago. The short answer is no. The long answer is sometimes using a metaclass or something. See here for an explanation of why. – aaronasterling Apr 6 '12 at 5:22

1 Answer

up vote 6 down vote accepted

You don't need the class name

class SomeClass:
   SOME_CONST = "hello"
   SOME_OTHER_CONST = SOME_CONST + " world"
share|improve this answer
@AramKocharyan PHP needs to reference the class to access a class variable because it has a more standard notion of class. In python, the VM enters a local scope and executes all code under the class statement as if it were a function. It then turns the resulting name space into the class. So you can do this in Python because it's already in the same name space. – aaronasterling Apr 6 '12 at 5:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.