Answers for "python float precision"

25

python 2 decimal places

print(format(432.456, ".2f"))

>> 432.45

print(format(321,".2f"))

>> 321.00
Posted by: Guest on March-23-2020
3

printing with format float to 2 decimal places python

formatted_float = "{:.2f}".format(a_float)
Posted by: Guest on July-23-2020
4

python format float

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

give answer in 6 decimal python

print("{:.6f}".format(variable_name))
Posted by: Guest on May-20-2020
2

fixed precision float python

x = 13.949999999999999999
g = float("{:.2f}".format(x))
Posted by: Guest on May-20-2020
0

show all digits in python

>>> a
3.101541146879488e+80
>>> int(a)
310154114687948792274813492416458874069290879741385354066259033875756607541870592L
>>> long(a)
310154114687948792274813492416458874069290879741385354066259033875756607541870592L
>>> print (int(a))
310154114687948792274813492416458874069290879741385354066259033875756607541870592
>>> print (long(a))
310154114687948792274813492416458874069290879741385354066259033875756607541870592
Posted by: Guest on June-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language