Saturday, March 3, 2018

Number min() Method


Number min() Method in Python 3

Description
The method min() returns the smallest of its arguments i.e. the value closest to negative
infinity.
Syntax
Following is the syntax for the min() method
min(x, y, z, .... )

Parameters
· x - This is a numeric expression.
· y - This is also a numeric expression.
· z - This is also a numeric expression.
Return Value
This method returns the smallest of its arguments.
Example
The following example shows the usage of the min() method.


When we run the above program, it produces the following result-