Home
Python Tutorial
Introduction
Data Type
Statement
Operator
String
Tuple
List
Dictionary
Collections
Function
Class
File
Buildin Function
Buildin Module
Database
Regular Expressions
Thread
Tkinker
wxPython
XML
Network
CGI Web
Windows
Get the min value from a list : Min « List « Python Tutorial
Python Tutorial
List
Min
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