Python 学习笔记(六)——元组

不能重新修改元素的列表称为 元组

1
2
3
dimensions = (200, 50, 20, 'a')
print(dimensions[0])
print(dimensions[1])

尝试修改元组元素:

1
dimensions[0] = 1

抛出异常:

TypeError: ‘tuple’ object does not support item assignment(元组对象不支持重新修改)
———— The End ————