Answers for "round 6.25 to 6.3 in python"

1

how to round to the nearest 25 python

def myround(x, base=5):
    return base * round(x/base)
Posted by: Guest on July-27-2020
1

how to round to the nearest 25 python

def myround(x, prec=2, base=.05):
  return round(base * round(float(x)/base),prec)
Posted by: Guest on July-27-2020
0

python round 2.5

i = round(2.5)
Posted by: Guest on July-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language