Min () method used for minimum value in Python
This article briefly introduces the min () method used in Python for minimum value. It is a basic knowledge in Python. For more information, see
The min () method returns the minimum value of its parameter: The value closest to the negative infinity.
Syntax
The syntax of the min () method is as follows:
?
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 parameters.
Example
The following example shows how to use the min () method.
?
1 2 3 4 5 6 |
#! /Usr/bin/python Print "min (80,100,100 0):", min (80,100,100 0) Print "min (-20,100,400):", min (-20,100,400) Print "min (-80,-20,-10):", min (-80,-20,-10) Print "min (0,100,-400):", min (0,100,-400) |
When we run the above program, it will produce the following results:
?
1 2 3 4 |
Min (80,100,100 0): 80 Min (-20,100,400):-20 Min (-80,-20,-10):-80 Min (0,100,-400):-400 |