本文实例讲述了python zip和unzip数据的方法。分享给大家供大家参考。具体实现方法如下:
# zipping and unzipping a string using the zlib module
# a very large string could be zipped and saved to a file speeding up file writing time
# and later reloaded and unzipped by another program spe
定义:zip([iterable, ...])
zip()是Python的一个内建函数,它接受一系列可迭代的对象作为参数,将对象中对应的元素打包成一个个tuple(元组),然后返回由这些tuples组成的list(列表)。若传入参数的长度不等,则返回list的长度和参数中长度最短的对象相同。利用*号操作符,可以将list unzip(解压),看下面的例子就明白了:
>>> a = [1,2,3]
>>> b = [4,5,6]
>>> c