黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python round() 函數(shù)

python round() 函數(shù)

python number(數(shù)字)python number(數(shù)字)

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

 

1. 語法

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

round( x [, n]  )

 

2. 參數(shù)

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

 

3. 返回值

返回浮點數(shù)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(數(shù)字)python number(數(shù)字)

下一節(jié):python sqrt() 函數(shù)

python 教程

相關文章