运行 ❯
获取您
自己的 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 行,在 <模块>
print(thislist) # 这将导致错误,因为您已经成功删除了 "thislist"。
NameError: 未定义的名称 'thislist'