Answers for "round of number to 2 digits python"

40

round to two decimal places python

>>> x = 13.949999999999999999
>>> x
13.95
>>> g = float("{0:.2f}".format(x))
>>> g
13.95
>>> x == g
True
>>> h = round(x, 2)
>>> h
13.95
>>> x == h
True
Posted by: Guest on March-25-2020
0

python rounding numbers to n digits

def roundTraditional(val,digits):
   return round(val+10**(-len(str(val))-1), digits)
Posted by: Guest on September-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language