list1=[1,2,3,4] list2=[[0,0,0,0], [0,0,0,0], [0,0,0,0], [1,1,1,1]] info=zip(list1,list2) for i in info: print(i)