Python max()返回其最大值。
max(x1, x2,...) - 语法
max( x, y, z, .... )
x - 数值表达式。
y - 数值表达式。
z - 数值表达式。
max(x1, x2,...) - 返回值
此方法返回最大的参数。
max(x1, x2,...) - 示例
以下示例显示max()方法的用法。
#!/usr/bin/python print "max(80, 100, 1000) : ", max(80, 100, 1000) print "max(-20, 100, 400) : ", max(-20, 100, 400) print "max(-80, -20, -10) : ", max(-80, -20, -10) print "max(0, 100, -400) : ", max(0, 100, -400)
当无涯教程运行上面的程序时,它产生以下输出-
max(80, 100, 1000) : 1000 max(-20, 100, 400) : 400 max(-80, -20, -10) : -10 max(0, 100, -400) : 100