Looking forward to suggestions using itertools
I have two lists of values for X and Y-axis
x=[75.0, 75.0, 74.5 ]
y=[34.0, 34.0, 33.5 ]
I want to know the points that I can obtain with these values, Don't need the combinations which starts with Y values and need to avoid the points due to duplicate values in x and y
the output that I am expecting
out= [(75,34),(75,33.5),(74.5,34),(74.5,33.5)]