Answers for "how to format string decimals in python"

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 "how to format string decimals in python"

Python Answers by Framework

Browse Popular Code Answers by Language