📅  最后修改于: 2023-12-03 15:34:04.185000             🧑  作者: Mango
在Python中,有时候需要将小数位数舍入到给定的精度。为此,我们可以使用 round()
函数。
round()
函数round()
函数是Python内置函数之一,用于将数字舍入到给定精度。该函数通常使用以下形式:
round(number, ndigits=None)
number
参数是需要舍入的数字,ndigits
参数是保留的小数位数(默认为 None
),它可以是正数或负数。
当 ndigits
为正数时,number
参数将四舍五入到指定的小数位数。当 ndigits
为负数时,number
参数将四舍五入到指定的位数。
以下是使用 round()
函数的一些示例:
# 四舍五入到整数
round(5.678)
# 输出:6
# 四舍五入到小数点后1位
round(5.678, 1)
# 输出:5.7
# 四舍五入到小数点精度
round(5.678, 2)
# 输出:5.68
# 四舍五入到十位
round(567.8, -1)
# 输出:570.0
# 四舍五入到百位
round(5678, -2)
# 输出:5700
在写Python代码时,可能会涉及到数字的处理和舍入。round()
函数是一个非常有用的工具,可以帮助您将数字舍入到指定的小数位数。