在Python中删除元组元素

无法删除单个元组元素。当然,将另一个元组与不想要的元素丢弃在一起并没有错。

要显式删除整个元组,只需使用del语句。

示例

#!/usr/bin/python

tup = ('physics', 'chemistry', 1997, 2000);

print tup;

del tup;

print "After deleting tup : ";

print tup;

输出结果

这将产生以下结果。请注意引发了一个异常,这是因为在del tup tuple之后不再存在-

('physics', 'chemistry', 1997, 2000)

After deleting tup :

Traceback (most recent call last):

File "test.py", line 9, in <module>

print tup;

NameError: name 'tup' is not defined

以上是 在Python中删除元组元素 的全部内容, 来源链接: utcz.com/z/352501.html

回到顶部