python中tuple是什么
收起
云计算小粉
2018-05-10 20:10:25
1909
0
2
条回答
写回答
取消
提交回答
-
-
python中的tuple是一种数据类型,由多个成员组成,与list相比不同之处在于tuple的成员不能修改。
>>> a = (1, 2, 'string', None)
>>> type(a)
>>> a
(1, 2, 'string', None)
>>> a[1]
2
>>> a[1] = 0
Traceback (most recent call last):
File "", line 1, in
TypeError: 'tuple' object does not support item assignment
2019-07-17 22:20:39