/
11.02.2021 at 01:13 am
Cuttings

46 Simple Python Exercises/#02

Find the largest of three.

... Define a function max_of_three() that takes three numbers as arguments and returns the largest of them.

Code
                        def max_of_three(a, b, c):
    return max(a, b, c)


print(max_of_three(1, 13, 6))
                    
Filed under:
#
#
#
Words: 9 words approx.
Time to read: 0.04 mins (at 250 wpm)
Keywords:
, , , ,

Latest Comments

© Wan Zafran. See disclaimer.