1. 程式人生 > >Python round() 函式

Python round() 函式

描述

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

語法

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

round( x [, n])

引數

  • x -- 數值表示式。
  • n -- 數值表示式。

返回值

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

例項

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

#!/usr/bin/pythonprint"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