how to round off a no. in python code example
Example 1: round off float to 2 decimal places in python
answer = str(round(answer, 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)