python的數據對象——元組
元組spa
1.元組的特色索引
2.元組基本操做ast
- 元組相加 >>> d+(2,3)
(1, '34', 23, 2, 3)
>>> d+(23,)
(1, '34', 23, 23)
>>> d+(3)
- 錯誤代碼>>> d+(3)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only concatenate tuple (not "int") to tuple
>>>
- 檢測元素是否存在>>> 3 in d
False
>>> if not 3 in d:
... print('missing fail')
...
missing fail
>>>
- 元組索引>>> d[0]
1
>>> d[:]
(1, '34', 23)
3.使用元組的緣由module
他的不可更改性
call
歡迎關注本站公眾號,獲取更多信息