Finding the maximum value in a list returns the largest number. For example, the maximum value in [1, 2, 3] is 3.
Solution for How to find the maximum value in a list of numbers in Python : You can use max() to find the maximum value Call max(iterable) to return the largest value in iterable.