python zip print two list

Solutions on MaxInterview for python zip print two list by the best coders in the world

showing results for - "python zip print two list"
Sterling
11 May 2020
1for i,j in zip(a,b):
2	print (i, j)