one decimal place python code example
Example 1: print upto 1 decimal place python
print("{:.1f}".format(number)) # Python3
print "%.1f" % number # Python2
Example 2: how to round to the nearest 25 python
def myround(x, base=5):
return base * round(x/base)
Example 3: how to round to the nearest 25 python
def myround(x, prec=2, base=.05):
return round(base * round(float(x)/base),prec)