unzip function?

Alec Taylor alec.taylor6 at gmail.com
Wed Jan 18 10:27:31 EST 2012


http://docs.python.org/library/functions.html
>>> x = [1, 2, 3]
>>> y = [4, 5, 6]
>>> zipped = zip(x, y)
>>> zipped
[(1, 4), (2, 5), (3, 6)]
>>> x2, y2 = zip(*zipped)
>>> x == list(x2) and y == list(y2)
True



More information about the Python-list mailing list