运行 ❯
拥有你自己的 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