AttributeError:“测试”对象没有属性“ a”

时间:2020-05-13 01:22:19

标签: python python-3.x

我收到 AttributeError:“测试”对象没有属性“ a” 。我不明白代码有什么问题。请指教。

class Test():
    def __int__(self):
        self.a = 1

t = Test()
print(t.a)

1 个答案:

答案 0 :(得分:0)

它应该是 init (初始化的缩写),而不是 int (整数):

class Test():
    # here was the fault
    def __init__(self):
        self.a = 1

t = Test()
print(t.a)
# Outputs 1

您定义了错误的方法