Issue
How does one round a number UP in Python?
I tried round(number)
but it rounds the number down. Example:
round(2.3) = 2.0
and not 3, as I would like.
The I tried int(number + .5)
but it round the number down again! Example:
int(2.3 + .5) = 2
Solution
The math.ceil (ceiling) function returns the smallest integer higher or equal to x
.
For Python 3:
import math
print(math.ceil(4.2))
For Python 2:
import math
print(int(math.ceil(4.2)))
Answered By - Steve Tjoa Answer Checked By - Cary Denson (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.