Python 删除元组项
删除元组项
注释:您不能删除元组中的项目。
元组是不可更改的,因此您无法从中删除项目,但您可以完全删除元组:
实例
del
关键字可以完全删除元组:
thistuple = ("apple", "banana", "cherry")
del
thistuple
print(thistuple)
#this will raise an error because the tuple no longer exists
亲自试一试 »
注释:您不能删除元组中的项目。
元组是不可更改的,因此您无法从中删除项目,但您可以完全删除元组:
del
关键字可以完全删除元组:
thistuple = ("apple", "banana", "cherry")
del
thistuple
print(thistuple)
#this will raise an error because the tuple no longer exists
亲自试一试 »
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。