give .2f in python once and print every float with 2 decimals code example
Example: python print 2 decimal places
# this will print up to digits after decimal
print("%.2f" % (70/105))
# this will print up to digits after decimal
print("%.2f" % (70/105))