赞
踩
>>> x = (1, 2, 3) #直接把元组赋值给一个变量 >>> x[1] = 4 #元组是不可变的 TypeError: 'tuple' object does not support item assignment
传送门:Python列表详解 传送门:Python元组详解