元组中的元素值是不允许删除的,但我们可以使用del语句来删除整个元组 #!/usr/bin/pythontup = ('physics', 'chemistry', 1997, 2000)print tupdel tupprint "After deleting tup : "print tup