Python中的元組和列表的區別

勿在浮沙築高臺LS發表於2017-02-08

python中元組用小括號而列表用中括號。
但是元組不能修改值。
實驗程式碼如下:

a=(1,3,4,2)
b=[1,2,3,4]
b[1]=5
print(b)
a[1]=5
print(a)

實驗結果:

[1, 5, 3, 4]
    a[1]=5
TypeError: 'tuple' object does not support item assignment

相關文章