How to return three values from a function in Python

1 Answer

0 votes
def function(a, b, c):
        return a * a, b * b, c * c

x, y, z = function(2, 3, 4)
print(x, y, z)

x, y, z = function(5, 6, 7)
print(x, y, z)


'''
run:
 
4 9 16
25 36 49
 
'''

 



answered Feb 10, 2018 by avibootz
...