Contact: aviboots(AT)netvision.net.il
41,381 questions
53,927 answers
573 users
def f(n): a = n * 2 b = n * 3 c = n * 4 return a, b, c result = f(12) print(result) x = result[0] y = result[1] z = result[2] print(x) print(y) print(z) ''' run: (24, 36, 48) 24 36 48 '''
def f(n): a = n * 2 b = n * 3 c = n * 4 return a, b, c x, y, z = f(12) print(x) print(y) print(z) ''' run: 24 36 48 '''