最佳答案
我有一个类 Person
和一个名为 call_person
的静态方法:
class Person:
def call_person():
print "hello person"
在 python 控制台中,我导入类 Person 并调用 Person.call_person()
。但是它给我的错误说 'module' object has no attribute 'call_person'
。有人能告诉我为什么我会得到这个错误吗?