精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python max() 函數

python max() 函數

python number(數字)python number(數字)

max() 方法返回給定參數的最大值,參數可以為序列。

 

1. 語法

以下是 max() 方法的語法:

max( x, y, z, .... )

 

2. 參數

  • x -- 數值表達式。
  • y -- 數值表達式。
  • z -- 數值表達式。

 

3. 返回值

返回給定參數的最大值。

 

4. 實例

以下展示了使用 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

python number(數字)python number(數字)

下一節:python min() 函數

python 教程

相關文章