Class 12: Python Math Inbuilt Functions 5

min()

min() returns the lowest value in a sequence.

>>> min(3,5,1)
1

>>> min(True,False)
False