Source Code:
(back to article)
import math x = 3.14 rounded_x = math.ceil(x) print(rounded_x)
Result:
Report an issue