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