vote up 9 vote down star
1

The documentation for the round() function states that you pass it a number, and the positions past the decimal to round. Thus is should do this:

n = 5.59
round(n, 1) # 5.6

But, in actuality, good old floating point weirdness creeps in and you get:

5.5999999999999996

For the purposes of UI, I need to display '5.6'. I poked around the Internet and found some documentation that this is dependent on my implementation of Python. Unfortunately, this occurs on both my Windows dev machine and each Linux server I've tried. See here also.

Short of creating my own round library, is there any way around this?

Update: Ok, string formatting. Sometimes, it's just a really simple answer. Thanks everyone.

flag

9 Answers

vote up 17 vote down check

can't help the way it's stored, but at least formatting works correctly:

'%.1f' % round(n, 1) gives you '5.6'
link|flag
For my purposes, that's all I need. Thank you! – swilliams Sep 11 '08 at 15:15
vote up 4 vote down

Formatting works correctly even without having to round:

"%.1f" % n

link|flag
vote up 2 vote down

Floating point math is vulnerable to slight, but annoying, precision inaccuracies. If you can work with integer or fixed point, you will be guaranteed precision.

link|flag
vote up 2 vote down

round(5.59, 1) is working fine. The problem is that 5.6 cannot be represented exactly in binary floating point.

>>> 5.6
5.5999999999999996
>>>

As Vinko says, you can use string formatting to do rounding for display.

Python has a module for decimal arithmetic if you need that.

link|flag
vote up 1 vote down

You can use the string format operator %, similar to sprintf.

mystring = "%.2f" % 5.5999
link|flag
vote up 1 vote down

You get '5.6' if you do str(round(n, 1)) instead of just round(n, 1).

link|flag
vote up 0 vote down

You can switch the data type to a integer:

>>> n = 5.59
>>> int(n * 10) / 10.0
5.5
>>> int(n * 10 + 0.5) 
56

And then display the number by inserting the locale's decimal separator.

However, Jimmy's answer is better.

link|flag
vote up 0 vote down

printf the sucker.

print '%.1f' % 5.59  # returns 5.6
link|flag
vote up -2 vote down

round(n,1)+epsilon

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.