I can understand zip() function is used to construct a list of tuples like this:
x = ['a', 'b', 'c']
y = ['x', 'y', 'z', 'l']
lstTupA = zip(x,y)
lstTupA would be [('a', 'x'), ('b', 'y'), ('c', 'z')].
lstA, lstB = zip(*lstTupA)
The above operation extracts the keys in the list of tuples to lstA and values in the list of tuples to lstB.
lstA was ('a', 'b', 'c') and lstB was ('x', 'y', 'z').
My query is this: Why are lstA and lstB tuples instead of lists? a, b and c are homogeneous and so are x, y and z. It's not logical to group them as tuples, is it?
Ideally lstA, lstB = zip(*lstTupA) should have assigned ['a', 'b', 'c'] to lstA and ['x', 'y', 'z'] to lstB (lists) right?
Some one please clarify!
Thanks.
zipalways returns a list of tuples, there is nothing unexpected about it. DoinglstA, lstB = zip( .. )just eats that outer list, it's called sequence unpacking. – Jochen Ritzel Mar 15 '11 at 13:49