pow(x,y) function calculates x raised to the power y. It's a method of math module.
pow(x,y)
math
>>> import math >>> math.pow(2,3)
8.0
>>> math.pow(0,3)
0.0
>>> math.pow(3,0)
1.0