Python中元組tuple的作用以及tuple和list的轉換
一、tuple也是一個class,是不可變的list型別,不可以增刪改。
建立:
tup1 = (‘physics’, ‘chemistry’, 1997, 2000);
tup2 = (1, 2, 3, 4, 5 );
tup3 = “a”, “b”, “c”, “d”;
訪問:(與list一樣)tup1[1:5];
修改:不可以修改,只能增加新的部分;
tup3 = tup1 + tup2;
print tup3;
二、任意無符號的物件,以逗號隔開,預設為元組
,如下例項:
a=1,2,3,‘e’
a=(1,2,3,‘e’).
三、Python元組包含了以下內建函式(與list差不多的函式)
1、cmp(tuple1, tuple2):比較兩個元組元素。
2、len(tuple):計算元組元素個數。
3、max(tuple):返回元組中元素最大值。
4、min(tuple):返回元組中元素最小值。
5、tuple(seq):將列表轉換為元組。
四、tuple的方法:
1、count():查詢元素在tuple中出現的次數。
2.index():查詢元素的第一個索引值。
五、Tuple 是不可變 list。 一旦建立了一個 tuple 就不能以任何方式改變它。
①、Tuple 與 list 的相同之處
定義 tuple 與定義 list 的方式相同, 除了整個元素集是用小括號包圍的而不是方括號。
Tuple 的元素與 list 一樣按定義的次序進行排序。 Tuples 的索引與 list 一樣從 0 開始, 所以一個非空 tuple 的第一個元素總是 t[0]。
負數索引與 list 一樣從 tuple 的尾部開始計數。
與 list 一樣分片 (slice) 也可以使用。注意當分割一個 list 時, 會得到一個新的 list ;當分割一個 tuple 時, 會得到一個新的 tuple。
②、Tuple 不存在的方法
您不能向 tuple 增加元素。Tuple 沒有 append 或 extend 方法。
您不能從 tuple 刪除元素。Tuple 沒有 remove 或 pop 方法。
然而, 您可以使用 in 來檢視一個元素是否存在於 tuple 中。
③、用 Tuple 的好處
Tuple 比 list 操作速度快。如果您定義了一個值的常量集,並且唯一要用它做的是不斷地遍歷它,請使用 tuple 代替 list。
如果對不需要修改的資料進行 “防寫”,可以使程式碼更安全。使用 tuple 而不是 list 如同擁有一個隱含的 assert 語句,說明這一資料是常量。如果必須要改變這些值,則需要執行 tuple 到 list 的轉換。
④、Tuple 與 list 的轉換
Tuple 可以轉換成 list,反之亦然。內建的 tuple 函式接收一個 list,並返回一個有著相同元素的 tuple。而 list 函式接收一個 tuple 返回一個 list。從效果上看,tuple 凍結一個 list,而 list 解凍一個 tuple。
name_list = ["zhangsan", "lisi", "wangwu"]
name_tuple = tuple(name_list)
name_list = list(name_tuple)
本文來自 spider_d 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/djy37010/article/details/70161171?utm_source=copy
相關文章
- python list(列表)和tuple(元組)Python
- list和tuple元組的區別
- python中的list、tuple和dictionaryPython
- Python 的List 和tuple,Dict,SetPython
- python列表(list)和元組(tuple)詳解Python
- 草根學Python(三)List 和 TuplePython
- Python 選列表 list 還是元組 tuple 的思考Python
- python基礎之列表list元組tuplePython
- Python的List vs Tuple比較Python
- Python tuple(元組)Python
- Python元組tuplePython
- Python基礎:使用list & tuplePython
- python--元組tuplePython
- Python 建立元組tuplePython
- python 切片獲取list、tuple中的元素Python
- python中的list,tuple,set和dict(參考python文件)Python
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- python list tuple str dic series dataframePython
- Python中tuple和list的區別?Python基礎學習!Python
- python學習:元組tuplePython
- Python開發的入門教程(二)-List和Tuple型別Python型別
- Python中的tuplePython
- Swift元組(Tuple)Swift
- Python中基礎資料型別(List、Tuple、Dict)的概念和用法Python資料型別
- Python中tuple和list有什麼區別?Python入門!Python
- Python資料型別(元組tuple)Python資料型別
- python之tuple元組,基礎篇Python
- python資料結構元組tuplePython資料結構
- Python筆記:string,tuple,list,dictionary的區別(之二,高階用法與型別轉換)Python筆記型別
- Python之list,string,tuple,dict練習題Python
- Python - 基礎資料型別 tuple 元組Python資料型別
- .NET Framework 4.0之Tuple(元組)Framework
- scala常用操作-Tuple元祖轉換成String字串字串
- 04_python——元組(tuple)、字串 、 bytes bytearrayPython字串
- 輕鬆初探 Python 篇(四)—list tuple range 知識彙總Python
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- 小白學python系列-(5) tuplePython
- Python順序集合之 tuplePython