這篇文章主要介紹了Python中用max()方法求最大值的介紹,是Python入門中的基礎知識,需要的朋友可以參考下
max() 方法返回其參數最大值:最接近正無窮大的值。
語法
以下是max()方法的語法:
? 1 max( x, y, z, .... )參數
返回值
此方法返回其參數的最大值。
例子
下面的例子顯示了max()方法的使用。
? 1 2 3 4 5 6 #!/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)當我們運行上面的程序,它會產生以下結果:
? 1 2 3 4 max(80, 100, 1000) : 1000 max(-20, 100, 400) : 400 max(-80, -20, -10) : -10 max(0, 100, -400) : 100