Python 删除元组项目
删除元组项目
注意: 你不能删除元组中的项目。
元组是不可变的,因此你不能从中删除项目,但可以完全删除元组。
示例
del
关键字可以完全删除元组
thistuple = ("apple", "banana", "cherry")
del thistuple
print(thistuple) #这将引发错误,因为元组不再存在
自己试试 »
注意: 你不能删除元组中的项目。
元组是不可变的,因此你不能从中删除项目,但可以完全删除元组。
del
关键字可以完全删除元组
thistuple = ("apple", "banana", "cherry")
del thistuple
print(thistuple) #这将引发错误,因为元组不再存在
自己试试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]