在Python中,如何访问类方法中的“静态”类变量?
如果我有以下python代码:
class Foo(object): bar = 1 def bah(self): print(bar)f = Foo()f.bah()
它抱怨
NameError: global name 'bar' is not defined
如何访问类/静态变量bar内法bah?
bar
bah
相关分类