show/hide this revision's text 2 formatting, clarification, link to decimal

Negative round

The round() function has quite non obvious feature. It rounds a float number to given precision in decimal digits, but precision can be negative, so:

round(1234

>>> str(round(1234.5678, -2))
'1200.0'
>>> str(round(1234.5678, 2)== 1200.0  function )
'1234.57'

Note: round() always returns a float

round(1234.178, 2str()== 1234.18

Not very useful, but haven't I used it for 'positive' rounding I would never discover 'negative' face of round()in the above example because floating point math is inexact, and under 2.x the second example can print as 1234.5700000000001. Also see the decimal module.

    Post Made Community Wiki by Community
show/hide this revision's text 1

round function has quite non obvious feature. It rounds a float number to given precision in decimal digits, but precision can be negative, so:

round(1234, -2) == 1200.0 function always returns a float

round(1234.178, 2) == 1234.18

Not very useful, but haven't I used it for 'positive' rounding I would never discover 'negative' face of round().