Answers for "python only 2 decimals"

3

python format only 1 decimal place

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

how do i limit decimals to only two decimals in python

answer = str(round(answer, 2))
Posted by: Guest on May-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language