Python round() 函数
定义和用法
The round()
函数返回一个浮点数,它是指定数字的四舍五入版本,具有指定的小数位数。
默认的小数位数为 0,这意味着该函数将返回最接近的整数。
语法
round(number, digits)
参数值
参数 | 描述 |
---|---|
number | 必需的。要四舍五入的数字 |
digits | 可选的。四舍五入数字时要使用的小数位数。默认值为 0 |
The round()
函数返回一个浮点数,它是指定数字的四舍五入版本,具有指定的小数位数。
默认的小数位数为 0,这意味着该函数将返回最接近的整数。
round(number, digits)
参数 | 描述 |
---|---|
number | 必需的。要四舍五入的数字 |
digits | 可选的。四舍五入数字时要使用的小数位数。默认值为 0 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]