How to round a number down to the nearest 100 in Python

1 Answer

0 votes
import math 

def roundDownToNearest100(num):
    return math.floor(num / 100) * 100
    
print(roundDownToNearest100(138))

print(roundDownToNearest100(238))

print(roundDownToNearest100(349))
print(roundDownToNearest100(350))
print(roundDownToNearest100(351))

print(roundDownToNearest100(-101))
print(roundDownToNearest100(-109))





'''
run:

100
200
300
300
300
-200
-200

'''

 



answered Jul 16, 2022 by avibootz

Related questions

1 answer 113 views
1 answer 111 views
1 answer 103 views
1 answer 112 views
1 answer 123 views
...