1. 程式人生 > >?python 的zip 函數小例子

?python 的zip 函數小例子

.... python 函數 例子 小例子 int ... tom pri

In [57]: name = (‘Tome‘,‘Rick‘,‘Stephon‘)

In [58]: age = (45,23,55)

In [59]: for a,n in zip (name,age):
....: print a,n
....:
Tome 45
Rick 23
Stephon 55

In [60]:

?python 的zip 函數小例子