Find the greatest (largest, maximum) number in a list of numbers

What about max()

highest = max(1, 2, 3)  # or max([1, 2, 3]) for lists

Leave a Comment