This problem is killing me. How does one roundup a number UP in Python?
I tried round(number) but it rounds the number down. Example:
round(2.3) = 2.0 and not 3, what I would like
Then I tried int(number + .5) but it rounds the number down again! Example:
int(2.3 + .5) = 2
Then I tried round(number + .5) but it won't work in edge cases. Example:
WAIT! THIS WORKED!
Please advise.