How do you round a number in python? For example, say I have 5.85. I round up to 6. How do you do that in python?
https://realpython.com/python-rounding/ This website could probably help you out. For your example you could probably use math.ceil.
math.ceil
How to round
How do you round a number in python? For example, say I have 5.85. I round up to 6. How do you do that in python?
https://realpython.com/python-rounding/
This website could probably help you out. For your example you could probably use
math.ceil
.