執行 ❯
擁有你自己的 Python 伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1964 } del thisdict print(thisdict) #this will cause an error because "thisdict" no longer exists.
回溯 (最近一次呼叫最後)
檔案 "demo_dictionary_del3.py",第 7 行,在 <module>
print(thisdict) # 這將導致錯誤,因為 "thisdict" 已不存在。
NameError: name 'thisdict' is not defined