2016年6月16日 星期四

Python_zip()

zip(*iterables)

內建函數 (function) vars() ,將參數 (parameter) *iterables 的元素進行配對,儲存在回傳的序對中。

範例:
>>> x = [1, 2, 3]
>>> y = [4, 5, 6]
>>> zipped = zip(x, y)
>>> list(zipped)
[(1, 4), (2, 5), (3, 6)]
>>> x2, y2 = zip(*zip(x, y))
>>> x == list(x2) and y == list(y2)
True






沒有留言:

張貼留言