当我在python中将x舍入时,它返回0.0

时间:2019-07-15 18:04:24

标签: python rounding-error

当我尝试运行print(round(x, 2))时,它显示为0.0。

1 个答案:

答案 0 :(得分:1)

如果x小于0.005,它将舍入为0。

x = 0.005
round(x, 2)
> 0.01

x = 0.0049
round(x, 2)
> 0.00