how to print up to 4 decimal places in python usinf f 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))