Division du plafond Python
import math
a = 16
b = 6
c = math.ceil(a/b) # assert c equals 3
Talented Tiger
import math
a = 16
b = 6
c = math.ceil(a/b) # assert c equals 3
import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4
import math
a = 16
b = 6
c = ceil(a/b)