執行 ❯
擁有你自己的 Python 伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
thislist = ["apple", "banana", "cherry"] del thislist print(thislist) #this will cause an error because you have succsesfully deleted "thislist".
回溯 (最近一次呼叫最後)
檔案 "demo_list_del2.py", 第 3 行, 在 <module>
print(thislist) #由於您已成功刪除 "thislist",這將導致錯誤。
NameError: name 'thislist' is not defined