First time here? Check out the FAQ!
answered 2016-03-13 09:31:28 +0100
If you have two separated lists of values you can zip the lists:
zip
Y = [0,1,2,3] X = [3,2,12,5] P = zip(X,Y) print P points(P)