Possible Duplicate:
A Transpose/Unzip Function in Python
I have a list that looks like this:
list = (('1','a'),('2','b'),('3','c'),('4','d'))
I want to separate the list in 2 lists.
list1 = ('1','2','3','4')
list2 = ('a','b','c','d')
I can do it for example with:
list1 = []
list2 = []
for i in list:
list1.append(i[0])
list2.append(i[1])
But I want to know if there is a more elegant solution.
list. Once you've created a variablelist, you start to have weird things happen because the built-in functionlist()is now hidden by your variable. – S.Lott Sep 26 '11 at 17:36