I have a set like (669256.02, 6117662.09, 669258.61, 6117664.39, 669258.05, 6117665.08) which I need to iterate over, like
    for x,y in (669256.02, 6117662.09, 669258.61, 6117664.39, 669258.05, 6117665.08)
        print (x,y)
which would print
    669256.02 6117662.09
    669258.61 6117664.39
    669258.05 6117665.08
im on Python 3.3 btw
 
     
     
     
     
    