Mega Code Archive

 
Categories / Python Tutorial / List
 

Get the min value from a list

numbers = [100, 34, 678] print min(numbers) print min(9, 3, 2, 5)