# 1207.py a=[1,2,3]; b=[11,12,13] c=[21,22,23]; d=[31,32,33] for x in zip(a,b,c,d): print x # (1, 11, 21, 31) # (2, 12, 22, 32) # (3, 13, 23, 33)