ceil in python 3 implementation code example
Example 1: ceil function in python
import math
print(math.ceil(5.3))
output = 6
Example 2: ceil in python3
import math
math.ceil( x )
import math
print(math.ceil(5.3))
output = 6
import math
math.ceil( x )