Currently I would do:
for x in [1,2,3]:
for y in [1,2,3]:
print x,y
Is there way of doing something like below,
for x,y in ([1,2,3],[1,2,3]):
print x,y
Would like to shorten this kind of loop and this throws the "too many to unpack" exception.