>>> '{number:.{digits}f}'.format(number=p, digits=n) '3.1416'
#round print process = 1345 * 0.75 print(f"The result can be shown as {round(process, 1)}") #output:1008.8 print(f"The result can be shown as {round(process, 2)}") #output:1008.75