python.zip()函数

Definition : zip(iter1 [,iter2 [...]])


Type : Function of builtins module

zip(iter1 [,iter2 […]]) –> zip object

Return a zip object whose .next() method returns a tuple where the i-th element comes from the i-th iterable argument. The .next() method continues until the shortest iterable in the argument sequence is exhausted and then it raises StopIteration.

zip() 函数用于将可迭代的对象作为参数,将对象中对应的元素打包成一个个元组,然后返回由这些元组组成的列表。
如果各个迭代器的元素个数不一致,则返回列表长度与最短的对象相同,利用 * 号操作符,可以将元组解压为列表。

## http://www.runoob.com/python/python-func-zip.html 
>>>a = [1,2,3]
>>> b = [4,5,6]
>>> c = [4,5,6,7,8]
>>> zipped = zip(a,b)     # 打包为元组的列表
[(1, 4), (2, 5), (3, 6)]  # 代码测试的时候并不会出现这个结果,只会出现,不清楚具体原因

##应该将zipped列表化才能显示出其里面含有的元素
>>>list(zipped)
>>> 


>>> zip(a,c)              # 元素个数与最短的列表一致
[(1, 4), (2, 5), (3, 6)]
>>> zip(*zip(a,c))          # 与 zip 相反,可理解为解压,返回二维矩阵式
[(1, 2, 3), (4, 5, 6)]

你可能感兴趣的:(python-learning,数字图像处理)