zip
x = [1,2,3] y = [4,5,6] zip(x,y) #[(1, 4), (2, 5), (3, 6)] #zips together lists as tuples #length has to be same or else it will recycle