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?
This doesn't work.
Is there any way to refer to the class within the class? |
|||
|
You don't need the class name
|
|||
|
SOME_OTHER_CONST = SOME_CONST– Darthfett Apr 6 '12 at 5:22