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 floatround(1234.178, 2
str()== 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.
