how to get a letter to print with decimal places 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))