Answers for "python round to multiple of 10"

1

python round down to nearest multiple of number

# Basic syntax:
import math
math.floor(larger_number / multiple) * multiple

# Example usage:
# Say you want to get the nearest multiple of 5 less than 29
import math
math.floor(29 / 5) * 5
--> 25

# Note, you can also do this with div if you don't want to import math
29 // 5 * 5

# Note, to get the nearest multiple of 5 greater than 29 run:
math.ceil(29 / 5) * 5
--> 30
Posted by: Guest on April-28-2021
1

how to round to two places python

round(number, decimal places)
Posted by: Guest on October-31-2020

Code answers related to "python round to multiple of 10"

Python Answers by Framework

Browse Popular Code Answers by Language