位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

TUPLE(元祖)在Python里的作用?

提问人:杨紫红发布时间:2020-11-18

TUPLE(元祖)

元组类似于使用圆括号的列表,用()进行定义,区别是创建后不能更改

image.png

>>> fibs = (0, 1, 1, 2, 3)

>>> print(fibs[3])

image.png

>>> fibs[0] = 4

Traceback (most recent call last):

File "<pyshell>", line 1, in <module>

fibs[0] = 4

TypeError: 'tuple' object does not support item assignment


继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部