math.ceil for int python code example
Example 1: ceil function in python
import math
print(math.ceil(5.3))
output = 6
Example 2: ceil function in python
import math
print(math.floor(5.3))
output = 6
import math
print(math.ceil(5.3))
output = 6
import math
print(math.floor(5.3))
output = 6