This problem is killing me. How does one roundup a number UP in Python?
I tried round(number) but it round the number down. Example:
round(2.3) = 2.0 and not 3, what I would like
The I tried int(number + .5) but it round 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.

round(number)does not round "down" in general. 2.49 is rounded down to 2.0. 2.5 is rounded up to 3.0. What do you want? Please provide concrete examples. Your question makes very little sense without specific example numbers. – S.Lott Mar 1 '10 at 14:44round( 2.5 )rounds up. Every time I run it, I get 3.0. So your claim of "round(number) but it round the number down" is absolutely false. Since you can't be lying, the question must be incomplete. So please provide an actual example that shows that you are talking about. – S.Lott Mar 1 '10 at 16:19