Answers for "round up to nearest 5 python"

20

python round up

>>> import math

>>> math.ceil(5.2)
6

>>> math.ceil(5)
5

>>> math.ceil(-0.5)
0
Posted by: Guest on December-08-2019
0

round to nearest multiple of 5 python from both end

#round up to multiple of 5 from both end
def rof(x,y,z):
    if x%5==4:
        x+=1
    elif x%5==1:
        x-=1
    elif x%5==2:
        x-=2
Posted by: Guest on June-06-2020

Code answers related to "round up to nearest 5 python"

Python Answers by Framework

Browse Popular Code Answers by Language