/
11.02.2021 at 12:56 am
Cuttings

46 Simple Python Exercises/#01

Largest number selector.

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

Use the if-then-else construct available in Python. (It is true that Python has the max() function built in, but writing it yourself is nevertheless a good exercise.)

Code
                        def new_max(a, b):

    assert b != a, "Values are the same."
    if a > b:
        return a
    elif b > a:
        return b

print(new_max(46, 46.5))
                    
Filed under:
#
#
Words: 7 words approx.
Time to read: 0.03 mins (at 250 wpm)
Keywords:
, , , , ,

Latest Comments

© Wan Zafran. See disclaimer.