Write a Python function to find the Max of three numbers





 code:-

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 number among three is:")
print(max_of_three(80, 100, 99))

output:-

max number among three is:
100
>>> 

Post a Comment

If you have any doubts, Please let me know
Thanks!

Previous Post Next Post