I am trying to round integers in python. I looked at the built-in round() function but it seems that that rounds floats.
My goal is to round integers to the closest
Actually, you could still use the round function:
>>> print round(1123.456789, -1) 1120.0
This would round to the closest multiple of 10. To 100 would be -2 as the second argument and so forth.