Answers for "round to nearest 10 python"

1

python round to nearest 10

import random
Variable = round(random.randint(10, 20)/10)*10
#  this will return a random number to the nearest multiple of 10
Posted by: Guest on June-25-2021
0

how to round a number up in python

>>> import math

>>> math.ceil(3.2) # round up
4
Posted by: Guest on December-03-2020
0

python round 2.5

i = round(2.5)
Posted by: Guest on July-28-2021

Code answers related to "round to nearest 10 python"

Python Answers by Framework

Browse Popular Code Answers by Language