Get the min value from a list : Min « List « Python Tutorial






numbers = [100, 34, 678]
print min(numbers)
print min(9, 3, 2, 5)
7.19.Min
7.19.1.Get the min value from a list