python 元组

来源:互联网 发布:ubuntu下好玩的东西 编辑:程序博客网 时间:2024/05/10 01:53

Python 元组:

同字符串 列表一样是任意对象的集合

通过偏移存取

不可变得序列类型;最好被认为对象引用的数组

元组的操作:

>>> (1,2)+(3,4)
(1, 2, 3, 4)
>>> (1,2)*3
(1, 2, 1, 2, 1, 2)
>>> t=('a','sad','bb','cc')
>>> id(t)
30756656
>>> tmp=list(t)
>>> tmp.sort()
>>> tmp
['a', 'bb', 'cc', 'sad']
>>> t=tuple(tmp)
>>> id(t)
31971536

元组中嵌有可变的对象

>>> t=(1,[2,4],6)
>>> t[1]='sss'
Traceback (most recent call last):
  File "<pyshell#147>", line 1, in <module>
    t[1]='sss'
TypeError: 'tuple' object does not support item assignment
>>> t[1][0]='ddd'
>>> t
(1, ['ddd', 4], 6)


0 0
原创粉丝点击