convert list of tuples into several lists

Oliver Eichler oliver.eichler at dspsolutions.de
Wed Feb 9 08:42:54 EST 2005


Hi,

I can find examples to convert lists into a list of tuples like:

>>> map(None,[1,2,3],[4,5,6])
[(1,4),(2,5),(3,6)]

but how is it done vice versa?

Oliver



More information about the Python-list mailing list