Answers for "how to round an output python"

1

round python print

#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
Posted by: Guest on July-06-2021
1

round off python

def myround(x, base=5):
    return base * round(x/base)
Posted by: Guest on July-27-2020

Code answers related to "how to round an output python"

Python Answers by Framework

Browse Popular Code Answers by Language