python math pow code example
Example 1: python floor
import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4
Example 2: python pow
pow(x,y)# ==x^y
import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4
pow(x,y)# ==x^y