Use the builtin function zip():
zip()
In Python 3:
z = list(zip(x,y))
In Python 2:
z = zip(x,y)
548k questions
547k answers
4 comments
86.3k users