Python 元組
Python的元組與列表類似,不同之處在於元組的元素不能修改。
元組使用小括號,列表使用方括號。
元組創建很簡單,只需要在括號中添加元素,並使用逗號隔開即可。
如下實例:
tup1 = ('physics', 'chemistry', 1997, 2000); tup2 = (1, 2, 3, 4, 5 ); tup3 = "a", "b", "c", "d";
創建空元組
tup1 = ();
元組中只包含一個元素時,需要在元素後面添加逗號
tup1 = (50,);
元組與字串類似,下標截取索引從0開始,可以進行截取,組合等。
存取元組
元組可以使用下標索引來存取元組中的值,如下實例:
#!/usr/bin/python tup1 = ('physics', 'chemistry', 1997, 2000); tup2 = (1, 2, 3, 4, 5, 6, 7 ); print "tup1[0]: ", tup1[0] print "tup2[1:5]: ", tup2[1:5]
以上實例輸出結果:
tup1[0]: physics tup2[1:5]: [2, 3, 4, 5]
修改元組
元組中的元素值是不允許修改的,但我們可以對元組進行連接組合,如下實例:
#!/usr/bin/python tup1 = (12, 34.56); tup2 = ('abc', 'xyz'); # 以下修改元组元素操作是非法的。 # tup1[0] = 100; # 创建一个新的元组 tup3 = tup1 + tup2; print tup3;
以上實例輸出結果:
(12, 34.56, 'abc', 'xyz')
刪除元組
元組中的元素值是不允許刪除的,但我們可以使用del語句來刪除整個元組,如下實例:
#!/usr/bin/python tup = ('physics', 'chemistry', 1997, 2000); print tup; del tup; print "After deleting tup : " print tup;
以上實例元組被刪除後,輸出變數會有異常訊息,輸出如下所示:
('physics', 'chemistry', 1997, 2000) After deleting tup : Traceback (most recent call last): File "test.py", line 9, in <module> print tup; NameError: name 'tup' is not defined
元組運算子
與字串一樣,元組之間可以使用+ 號和* 號進行運算。這意味著他們可以組合和複製,運算後會產生一個新的元組。
Python 表達式
結果
描述
len((1, 2, 3)) 3 計算元素個數 ( 1, 2, 3, 4, 5, 6) 連接
['Hi!'] * 4 ('Hi!', 'Hi!', 'Hi!', 'Hi!') 複製1, 2, 3) True 元素是否存在
for x in (1, 2, 3): print x, 1 2 3 迭代
組,因此元組索引
元組中的指定位置的元素,也可以截取索引中的一段元素,如下所示:元組:L = ('spam', 'Spam', 'SPAM!')
#!/usr/bin/python print 'abc', -4.24e93, 18+6.6j, 'xyz'; x, y = 1, 2; print "Value of x , y : ", x,y;
abc -4.24e+93 (18+6.6j) xyz Value of x , y : 1 2
1 cmp(tuple1, tuple2)
比較兩個元組元素。
2 len(tuple)
計算元組元素個數。
3 max(tuple)
返回元組中元素最大值。
4 min(tuple)
返回元組中元素最小值。
5 tuple(seq)
將清單轉換為元組。
以上就是【python教學】Python 元組的內容,更多相關內容請關注PHP中文網(www.php.cn)!