Find the greatest (largest, maximum) number in a list of numbers April 16, 2023 by Tarik What about max() highest = max(1, 2, 3) # or max([1, 2, 3]) for lists