在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?
添加回答
举报
0/150
提交
取消