Use the builtin function zip():
zip()
In Python 3:
z = list(zip(x,y))
In Python 2:
z = zip(x,y)
1.4m articles
1.4m replys
5 comments
57.0k users