寻找错误的四舍五入的解决方法

时间:2013-12-10 08:18:16

标签: python floating-accuracy

$ python
Python 2.7.3 (default, Apr 19 2012, 11:28:02) 
[GCC 4.5.3 20120403 (ALT Linux 4.5.3-alt3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> g = 1.175
>>> "%0.2f" % g
'1.18'
>>> g = 11.175
>>> "%0.2f" % g
'11.18'

到目前为止,这么好。但现在:

>>> g = 111.175
>>> "%0.2f" % g
'111.17'

“111.17”而不是预期的“111.18”。我想我明白了什么以及为什么会发生,但我需要想法如何获得预期的结果。 Excel和OpenOffice Calc都显示“111.18”,因此它应该是可能的。

1 个答案:

答案 0 :(得分:2)

您可以在此处使用decimal模块:

>>> import decimal
>>> myothercontext = decimal.Context(rounding=decimal.ROUND_HALF_UP)
>>> decimal.setcontext(myothercontext)
>>> TWOPLACES = decimal.Decimal(10) ** -2
>>> decimal.Decimal('111.175').quantize(TWOPLACES)
Decimal('111.18')
>>> decimal.Decimal('1.175').quantize(TWOPLACES)
Decimal('1.18')
>>> decimal.Decimal('11.175').quantize(TWOPLACES)
Decimal('11.18')
相关问题