Answers for "format print decimal python"

3

python format only 1 decimal place

>>> "{0:0.1f}".format(45.34531)
'45.3'
Posted by: Guest on August-02-2020
1

print decimal formatting in python

a_float = 3.14159
formatted_float = "{:.2f}".format(a_float)
Posted by: Guest on September-14-2020
0

python format decimal

# 2.6 python  and newer and python 3.x
# Put desired number of decimal by changing the number inside {:.2f} bellow;
print(' {:.2f}'.format(71.428571))
71.43
# 2.6 python and older
# Put desired number of decimal by changing the number inside '%.2f' bellow;
print('%.2f'%(71.428571))
71.43
Posted by: Guest on July-29-2021

Code answers related to "format print decimal python"

Python Answers by Framework

Browse Popular Code Answers by Language