執行 ❯
擁有你自己的 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 行,在 <module>
print(p1.age)
AttributeError: 'Person' 物件沒有屬性 'age'