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 107 views
1 answer 105 views
1 answer 94 views
1 answer 101 views
1 answer 117 views
...