我收到 AttributeError:“测试”对象没有属性“ a” 。我不明白代码有什么问题。请指教。
class Test():
def __int__(self):
self.a = 1
t = Test()
print(t.a)
答案 0 :(得分:0)
它应该是 init (初始化的缩写),而不是 int (整数):
class Test():
# here was the fault
def __init__(self):
self.a = 1
t = Test()
print(t.a)
# Outputs 1
您定义了错误的方法