Suppose I have 3 lists such as these
l1 = [1,2,3] l2 = [4,5,6] l3 = [7,8,9]
how do I get to print out everything from these lists at the s
If you want to print
1 4 7 2 5 8 3 6 9
Do:
for i,j,k in zip(l1,l2,l3): print i,j,k