AttributeError:对象没有属性-尽管存在类方法

时间:2019-03-28 13:58:37

标签: python-3.x class attributeerror

我有一个包含14个方法的类。这是骨骼:

class Field
    def __init__():
        ...
        return

    def ...():

country = Field()
country.re_fitness_population()

这是一个大班,所以这里是完整的pastebin

运行此代码会导致:

----> 1 country.re_fitness_population()

AttributeError: 'Field' object has no attribute 're_fitness_population'

在此类上运行dir()不会显示该方法可用,并且我尝试解决任何间距问题,但是运行python3 -tt也不会显示任何内容。我尝试重命名该方法,也无济于事。

我显然已经将该函数编写为该类的方法之一。我觉得我缺少一些大东西。

0 个答案:

没有答案