您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關如何在Python中使用zip()函數,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
python中zip()函數的使用:
>>> help(zip) Help on built-in function zip in module __builtin__: zip(...) zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)]
Return a list of tuples, where each tuple contains the i-th element
from each of the argument sequences. The returned list is truncated
in length to the length of the shortest argument sequence.
zip([seq1, ...])
接受一系列可迭代對象作為參數,將對象中對應的元素打包成一個個元組,然后返回由這些元組組成的列表。若傳入參數的長度不等,則返回列表的長度和參數中長度最短的對象相同。
1》
>>> x=[1,2,3] >>> y=[1,2,3] >>> z=(1,2,3) >>> zip(x,y,z) [(1, 1, 1), (2, 2, 2), (3, 3, 3)]
2》
>>> x=(1,2,3,4) >>> y=[1,2,3] >>> zip(x,y) #傳入參數的長度不等,則返回列表的長度和參數中長度最短的對象相同 [(1, 1), (2, 2), (3, 3)]
3》
>>> x (1, 2, 3, 4) >>> zip(x) [(1,), (2,), (3,), (4,)]
4》
>>> zip() []
5》zip()配合*號操作符,可以將已經zip過的列表對象解壓
>>> x=[1,2,3] >>> y=['a','b','c'] >>> z=[4,5,6] >>> xyz=zip(x,y,z) >>> xyz [(1, 'a', 4), (2, 'b', 5), (3, 'c', 6)] >>> zip(*xyz) [(1, 2, 3), ('a', 'b', 'c'), (4, 5, 6)]
6》
>>> x=[5,6,7] >>> [x] #[x]生成一個列表的列表,它只有一個元素x [[5, 6, 7]] >>> [x]*3 #[x] * 3生成一個列表的列表,它有3個元素,[x, x, x] [[5, 6, 7], [5, 6, 7], [5, 6, 7]] >>> x [5, 6, 7] >>> zip(*[x]*3) #zip(* [x] * 3)等價于zip(x, x, x) [(5, 5, 5), (6, 6, 6), (7, 7, 7)]
7》
>>> name=['song','ping','python'] >>> age=[26,26,27] >>> zip(name,age) [('song', 26), ('ping', 26), ('python', 27)] >>> for n,a in zip(name,age): ... print n,a ... song 26 ping 26 python 27
以上就是如何在Python中使用zip()函數,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。