python print only 2 decimal places code example
Example 1: how print 2 decimal in python
for i in range(10):
j=i*0.1
print('%0.2f' %j)
Example 2: python 2 decimal places format
>>> foobar = 3.141592
>>> print(f'My number is {foobar:.2f} - look at the nice rounding!')
My number is 3.14 - look at the nice rounding!