python 精度处理四舍五入_[Python]round四舍五入精度缺失的处理

对python四舍五入的处理方案

征象:平常的四舍五入操纵都是运用内置的round要领

In [14]: round(2.675,2)

Out[14]: 2.67

文档中如许诠释的

The documentation for the built-in round() function says that it rounds to the nearest value, rounding ties away from zero. Since the decimal fraction 2.675 is exactly halfway between 2.67 and 2.68, you might expect the result here to be (a binary approximation to) 2.68. It’s not, because when the decimal string 2.675 is converted to a binary floating-point number, it’s again replaced with a binary approximation, whose exact value is

In [22]: Decimal(2.675)

Out[22]: Decimal('2.67499999999999982236431605997495353221893310546875')

所以关于精度有明确要求的数学盘算来讲,运用round是不可的

google中有人这么处理的:

>>> from decimal import Decimal

>>> n = Decimal('1.555')

>>> round(n, 2)

Decimal('1.56')

如今运用的体式格局是:

能够运用str.format来格式化数字完成四舍五入

from decimal import Decimal

In [15]: '{:.2f}'.format(Decimal('2.675'))

Out[15]: '2.68''

毛病的写法

In [12]: '{:.2f}'.format(2.675)

Out[12]: '2.67'

In [13]: '{:.2f}'.format('2.675')

-------------------------------------------------------------

ValueError Traceback (most recent call last)

In [14]: '{:.2f}'.format(Decimal(2.675))

Out[14]: '2.67'

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值