programming-examples/python/Function/Python function to find the Max of three numbers.py
2019-11-15 12:59:38 +01:00

7 lines
193 B
Python

def max_of_two( x, y ):
if x > y:
return x
return y
def max_of_three( x, y, z ):
return max_of_two( x, max_of_two( y, z ) )
print(max_of_three(3, 6, -5))