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

Python abs() 函數

python abs() 函數

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

abs() 函數返回數字的絕對值。

 

1. 語法

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

abs( x )

 

2. 參數

  • x -- 數值表達式。

 

3. 返回值

函數返回x(數字)的絕對值。

 

4. 實例

以下展示了使用 abs() 方法的實例:

#!/usr/bin/python
 
print "abs(-45) : ", abs(-45)
print "abs(100.12) : ", abs(100.12)
print "abs(119l) : ", abs(119l)

以上實例運行后輸出結果為:

abs(-45) :  45
abs(100.12) :  100.12
abs(119l) :  119

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

下一節:python ceil() 函數

python 教程

相關文章