python中的元组其实是一种特殊的列表,他们最大的区别在于:元组是不可改变的,以下列举一些元组的不同之处
1)元组定义
temp = 1,2,3,4
type(temp)
结果:
<class 'tuple'>
temp = (1,)
type(temp)
结果:
<class 'tuple'>
2)切片
temp = (1,2,3,4)
temp1=temp[:3]
temp1
(1,2,3)
3)更新(此处与修改有很大区别)
temp = (1,2,3,4)
temp = temp[:3]+(6,)+temp[2:]
temp
(1, 2, 3, 6, 3, 4)