Python四舍五入代码
时间: 2023-04-08 16:04:06 浏览: 325
如何在Python中四舍五入答案
以下是 Python 的四舍五入代码:
round(number[, ndigits])
其中,number 是要进行四舍五入的数字,ndigits 是保留的小数位数,默认为 0。如果 ndigits 为正数,那么就是保留指定的小数位数;如果 ndigits 为负数,那么就是将指定的小数位数变成 0。
例如:
round(3.14159, 2) # 输出 3.14
round(3.14159, 0) # 输出 3.0
round(12345, -2) # 输出 12300
阅读全文