Python3 round() 函數(shù) -返回浮點(diǎn)數(shù)x的四舍五入值

2023-04-23 16:19 更新

Python3 數(shù)字 Python3 數(shù)字    |    Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)


描述

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


語法

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

round( x [, n]  )

參數(shù)

  • x -- 數(shù)值表達(dá)式。
  • n -- 表示從小數(shù)點(diǎn)位數(shù),其中 x 需要四舍五入,默認(rèn)值為 0。

返回值

返回浮點(diǎn)數(shù)x的四舍五入值。


實(shí)例

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

#!/usr/bin/python3

print ("round(70.23456) : ", round(70.23456))
print ("round(56.659,1) : ", round(56.659,1))
print ("round(80.264, 2) : ", round(80.264, 2))
print ("round(100.000056, 3) : ", round(100.000056, 3))
print ("round(-100.000056, 3) : ", round(-100.000056, 3))

以上實(shí)例運(yùn)行后輸出結(jié)果為:

round(70.23456) :  70
round(56.659,1) :  56.7
round(80.264, 2) :  80.26
round(100.000056, 3) :  100.0
round(-100.000056, 3) :  -100.0

Python3 數(shù)字 Python3 數(shù)字    |    Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)