format float to show only 2 decimals python inside print code example
Example 1: python format only 1 decimal place
>>> "{0:0.1f}".format(45.34531)
'45.3'
Example 2: printing with format float to 2 decimal places python
formatted_float = "{:.2f}".format(a_float)