T = (1, 'CH', [3, 4]) L=T[2] print(L) l=tuple(L) print(l) print(T)
l没有替换到T里面
当然不可以
L是list不是tuple
L = T[2], T[2]在 T中是list ,是不可变的。