i你哟 发表于 2020-7-13 12:01:13

元组

一个元组中例如
temp =(1,2,3,4,5,6)
我想删除3,可以用del吗?如果可以的话,麻烦您写一下代码
如果不可以的话,写出其他语法即可。

qiuyouzhi 发表于 2020-7-13 12:06:18

不能用del,得用切片:
temp[:temp.index(3)] + temp

永恒的蓝色梦想 发表于 2020-7-13 12:07:02

不能。idx = temp.index(3)
temp = temp[:index] + temp
页: [1]
查看完整版本: 元组