建立tuple
tuple是另一種有序的列表,中文翻譯為“ 元組 ”。tuple 和 list 非常類似,但是,tuple一旦建立完畢,就不能修改了。
同樣是表示班裡同學的名稱,用tuple表示如下:
>>> t = ('Adam', 'Lisa', 'Bart')
建立tuple和建立list唯一不同之處是用( )替代了[ ]。
現在,這個 t 就不能改變了,tuple沒有 append()方法,也沒有insert()和pop()方法。所以,新同學沒法直接往 tuple 中新增,老同學想退出 tuple 也不行。
獲取 tuple 元素的方式和 list 是一模一樣的,我們可以正常使用 t[0],t[-1]等索引方式訪問元素,但是不能賦值成別的元素,不信可以試試:
>>> t[0] = 'Paul'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
Python 建立元組tuple
相關文章
- Python tuple(元組)Python
- Python元組tuplePython
- python--元組tuplePython
- python學習:元組tuplePython
- python list(列表)和tuple(元組)Python
- Swift元組(Tuple)Swift
- Python資料型別(元組tuple)Python資料型別
- python之tuple元組,基礎篇Python
- python資料結構元組tuplePython資料結構
- python列表(list)和元組(tuple)詳解Python
- python基礎之列表list元組tuplePython
- Python - 基礎資料型別 tuple 元組Python資料型別
- .NET Framework 4.0之Tuple(元組)Framework
- 04_python——元組(tuple)、字串 、 bytes bytearrayPython字串
- Python 選列表 list 還是元組 tuple 的思考Python
- list和tuple元組的區別
- Python零基礎學習筆記(二十)——tuple元組Python筆記
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- Python中元組tuple的作用以及tuple和list的轉換Python
- Python 元組Python
- 【廖雪峰python入門筆記】tuple_建立Python筆記
- 深入理解 Python 虛擬機器:元組(tuple)的實現原理及原始碼剖析Python虛擬機原始碼
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- python的元組Python
- python-元組Python
- 【廖雪峰python入門筆記】tuple_建立單元素Python筆記
- Python元組詳解Python
- python元組和列表Python
- Python基礎_元組Python
- 認識Python 元組Python
- 06_Python 元組Python
- Python速通(元組)Python
- Python中的tuplePython
- Python列表、元組、字典使用Python
- Python 基礎 3 - 元組Python
- Python的元組()與字典{}Python
- Python 學習之元組Python
- python元組的特點Python