How to round a number to the nearest 1000 (closest to multiples of 1000) in Python

1 Answer

0 votes
print(round(1438, -3))
 
print(round(2538, -3))
print(round(2438, -3))

print(round(3499, -3))
print(round(3500, -3))
print(round(3501, -3))
 
 
 
 
 
'''
run:
 
1000
3000
2000
3000
4000
4000
 
'''

 



answered Jul 16, 2022 by avibootz

Related questions

...