I would like to return two values from a function in two separate variables. For example:
def select_choice(): loop = 1 row = 0 while loop == 1:
def test(): r1 = 1 r2 = 2 r3 = 3 return r1, r2, r3 x,y,z = test() print x print y print z > test.py 1 2 3