请参阅另一个类变量定义中的类变量

Ara*_*yan 10 python

class SomeClass:
    SOME_CONST = "hello"
    SOME_OTHER_CONST = SomeClass.SOME_CONST + " world"
Run Code Online (Sandbox Code Playgroud)

这不起作用.

NameError:未定义名称"SomeClass"

有没有办法在课堂上引用课程?

Ant*_*ong 18

您不需要类名

class SomeClass:
   SOME_CONST = "hello"
   SOME_OTHER_CONST = SOME_CONST + " world"
Run Code Online (Sandbox Code Playgroud)