round of a digit to 5 in python code example
Example 1: rounding numbers in python
>>> round(2.5)
2
Example 2: how to round to the nearest 25 python
def myround(x, prec=2, base=.05):
return round(base * round(float(x)/base),prec)
>>> round(2.5)
2
def myround(x, prec=2, base=.05):
return round(base * round(float(x)/base),prec)