David Robinow wrote:

> On Sat, Aug 6, 2011 at 1:23 PM, Kabie <kabie2...@gmail.com> wrote:
>> No.
>> L1, L2 = zip(*L)
> 
> Not quite. That makes L1 & L2 tuples.
> 
> L1, L2 = zip(*L)
> L1 = list(L1)
> L2 = list(L2)
> ???

L1, L2 = map(list, zip(*L))

-- 
By ZeD

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to