Home  >  Article  >  Backend Development  >  简单介绍Python中用于求最小值的min()方法

简单介绍Python中用于求最小值的min()方法

WBOY
WBOYOriginal
2016-06-06 11:16:082191browse

 min()方法返回它的参数最小值:最接近负无穷大的值。
语法

以下是min()方法的语法:

min( x, y, z, .... )

参数

  •     x -- 这是一个数值表达式。
  •     y -- 这也是一个数值表达式。
  •     z -- 这也是一个数值表达式。

返回值

此方法返回最小的它的参数。
例子

下面的例子显示了min()方法的使用。

#!/usr/bin/python

print "min(80, 100, 1000) : ", min(80, 100, 1000)
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)

当我们运行上面的程序,它会产生以下结果:

min(80, 100, 1000) : 80
min(-20, 100, 400) : -20
min(-80, -20, -10) : -80
min(0, 100, -400) : -400

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn