Get max from a list : Max « List « Python Tutorial






numbers = [100, 34, 678]
print max(numbers)
print max(2, 3)
7.17.Max
7.17.1.Get max from a list
7.17.2.max() and min()