The min () function in Python is a built-in function that returns the smallest item in an iterable or the smallest of two or more arguments.
The min () function in python is used to find the minimum value from the given input values.
It returns the smallest item.
We can find the minimum values in various ways.
x = min (1,4,2,7,5) print(x)
Here output:
x = 1