python: create list of tuples from lists [duplicate] July 24, 2023 by Tarik Use the builtin function zip(): In Python 3: z = list(zip(x,y)) In Python 2: z = zip(x,y)