Second Maximum Number in a ListDescriptionGiven a list of numbers, find the second largest number in the list. code example
Example: how to find second maximum element of an array python
maximum1 = max(lst)
maximum2 = max(lst, key = lambda x: min(lst)-1 if (x == maximum1) else x)