get floor value in python code example
Example 1: python ceiling
import math
n = 2.5
print(str(math.ceil(n)))
Example 2: python floor
import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4
import math
n = 2.5
print(str(math.ceil(n)))
import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4