Answers for "print only 2 digits python"

1

print on two digit python format

# Call str. format(number) with "{:. 2f}" as str and a float as number to 
# return a string representation of the number with two decimal places. 
# Call print(string) with the formatted float-string as string to print the float.

print("{:. 2f}".format(number))
Posted by: Guest on October-21-2021

Code answers related to "print only 2 digits python"

Python Answers by Framework

Browse Popular Code Answers by Language