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

Python round() 函數

python round() 函數

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

round() 方法返回浮點數x的四舍五入值。

 

1. 語法

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

round( x [, n]  )

 

2. 參數

  • x -- 數值表達式。
  • n -- 數值表達式,表示從小數點位數。

 

3. 返回值

返回浮點數x的四舍五入值。

 

4. 實例

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

#!/usr/bin/python

print "round(80.23456, 2) : ", round(80.23456, 2)
print "round(100.000056, 3) : ", round(100.000056, 3)
print "round(-100.000056, 3) : ", round(-100.000056, 3)

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

round(80.23456, 2) :  80.23
round(100.000056, 3) :  100.0
round(-100.000056, 3) :  -100.0

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

下一節:python sqrt() 函數

python 教程

相關文章