python資料結構元組tuple
tuple使用場景
- Tuple 比 list 操作速度快。如果您定義了一個值的常量集,並且唯一要用它做的是不斷地遍歷它,請使用 tuple 代替 list。
- 如果對不需要修改的資料進行 “防寫”,可以使程式碼更安全。使用 tuple 而不是 list 如同擁有一個隱含的 assert 語句,說明這一資料是常量。如果必須要改變這些值,則需要執行 tuple 到 list 的轉換 (需要使用一個特殊的函式)。
- Tuples 可以在 dictionary 中被用做 key,但是 list 不行。實際上,事情要比這更復雜。Dictionary key 必須是不可變的。Tuple 本身是不可改變的,但是如果您有一個 list 的 tuple,那就認為是可變的了,用做 dictionary key 就是不安全的。只有字串、整數或其它對 dictionary 安全的 tuple 才可以用作 dictionary key。
- Tuples 可以用在字串格式化中,後面會用到。
字串
>>>#變數引用str
>>> s = "abc"
>>> s
`abc`
元組
>>>#如果這樣寫,就會是...
>>> t = 123,`abc`,["come","here"]
>>> t
(123, `abc`, [`come`, `here`])
上面例子中看到的變數t,並沒有報錯,也沒有“最後一個有效”,而是將物件做為一個新的資料型別:tuple(元組),賦值給了變數t。
元組是用圓括號括起來的,其中的元素之間用逗號隔開。(都是英文半形)
tuple是一種序列型別的資料,這點上跟list/str類似。它的特點就是其中的元素不能更改,這點上跟list不同,倒是跟str類似;它的元素又可以是任何型別的資料,這點上跟list相同,但不同於str。
>>> t = 1,"23",[123,"abc"],("python","learn") #元素多樣性,近list
>>> t
(1, `23`, [123, `abc`], (`python`, `learn`))
>>> t[0] = 8 #不能原地修改,近str
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: `tuple` object does not support item assignment
>>> t.append("no")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: `tuple` object has no attribute `append`
>>>
從上面的簡單比較似乎可以認為,tuple就是一個融合了部分list和部分str屬性的雜交產物。此言有理。
- 像list那樣訪問元素和切片
先複習list中的一點知識:
>>> one_list = ["python","hiekay","github","io"]
>>> one_list[2]
`github`
>>> one_list[1:]
[`hiekay`, `github`, `io`]
>>> for word in one_list:
... print word
...
python
hiekay
github
io
>>> len(one_list)
4
- 上面的list如果換成tuple是否可行
>>> t
(1, `23`, [123, `abc`], (`python`, `learn`))
>>> t[2]
[123, `abc`]
>>> t[1:]
(`23`, [123, `abc`], (`python`, `learn`))
>>> for every in t:
... print every
...
1
23
[123, `abc`]
(`python`, `learn`)
>>> len(t)
4
>>> t[2][0] #還能這樣呀,哦對了,list中也能這樣
123
>>> t[3][1]
`learn`
- 所有在list中可以修改list的方法,在tuple中,都失效。
- 分別用list()和tuple()能夠實現兩者的轉化:
>>> t
(1, `23`, [123, `abc`], (`python`, `learn`))
>>> tls = list(t) #tuple-->list
>>> tls
[1, `23`, [123, `abc`], (`python`, `learn`)]
>>> t_tuple = tuple(tls) #list-->tuple
>>> t_tuple
(1, `23`, [123, `abc`], (`python`, `learn`))
``` XX
相關文章
- Python資料型別(元組tuple)Python資料型別
- Python tuple(元組)Python
- Python元組tuplePython
- Python - 基礎資料型別 tuple 元組Python資料型別
- python--元組tuplePython
- Python 建立元組tuplePython
- python學習:元組tuplePython
- python list(列表)和tuple(元組)Python
- Swift元組(Tuple)Swift
- python之tuple元組,基礎篇Python
- python列表(list)和元組(tuple)詳解Python
- python基礎之列表list元組tuplePython
- 【Python_029】內建資料結構,列表 | 字典 | 集合 | 元組Python資料結構
- Python中幾種資料結構的整理,列表、字典、元組、集合Python資料結構
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- .NET Framework 4.0之Tuple(元組)Framework
- 04_python——元組(tuple)、字串 、 bytes bytearrayPython字串
- Python 選列表 list 還是元組 tuple 的思考Python
- list和tuple元組的區別
- Python零基礎學習筆記(二十)——tuple元組Python筆記
- 從零開始學Python:第十二課-常用資料結構之元組Python資料結構
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- python資料型別 列表+元組Python資料型別
- [PY3]——內建資料結構(2)——元組及其常用操作資料結構
- Python基本資料型別之元組Python資料型別
- Python基本資料型別之tuplePython資料型別
- python 資料結構Python資料結構
- Python資料結構Python資料結構
- 組織架構新型資料結構思考架構資料結構
- Python基礎-元組小結Python
- Python基礎語法2 元組 & 字典 & 選擇結構Python
- Python中元組tuple的作用以及tuple和list的轉換Python
- 1.1.3 python基本資料型別之元組Python資料型別
- 學習python的資料型別——元組Python資料型別
- Python資料結構:字典Python資料結構
- python資料結構setPython資料結構
- (python)資料結構—字串Python資料結構字串
- (python)資料結構——列表Python資料結構