執行 ❯
擁有你自己的 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 print(p1)
回溯 (最近一次呼叫最後)
檔案 "demo_class8.py", 第 13 行, 在 <module>
print(p1)
NameError: 'p1' 未定義