运行 ❯
获取您自己的
Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
class Person: def __init__(self, name, age): self.name = name self.age = age def myfunc(self): print("Hello my name is " + self.name) p1 = Person("John", 36) del p1.age print(p1.age)
追踪记录 (最近的调用在最后)
文件 "demo_class7.py",第 13 行,在 <模块>
print(p1.age)
AttributeError: 'Person' 对象没有属性 'age'