I'm a newbie with python and I don't understand why doesn't the following work:
ea = zip([[200, 1], [10, 1]])
since I'm getting
[([200, 1],), ([10, 1],)]
while I should add an asterisk like
ea = zip(*[[200, 1], [10, 1]])
to obtain the result I want, i.e.
[(200, 10), (1, 1)]
I thought * was meant to convert the list to a tuple, what am I getting wrong?