how to do ceil in python code example
Example 1: python ceil
import math
math.ceil(5.3) # returns: 6
math.ceil(5.0) # returns: 5
math.ceil(5.7) # returns: 6
Example 2: python ceil
def ceil(k,b):
return b-k%b+k
print(ceil(5,10)) # Prints: 10
print(ceil(7.32,1.829)) # Prints: 9.145