min()
Given a sequence S containing at least one element, max(S) returns the largest element of the sequence.
S
max(S)
>>> min('blimey') 'b' >>> min ( [-505, -575, -144, -288] ) -575