how to write ceil function in python code example
Example 1: python ceiling
import math
n = 2.5
print(str(math.ceil(n)))
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