Power of a number can be computed using two methods.
using math.pow() function
>>> math.pow(10,2) 100.0
Using exponentiation operator
>>> 10**2 100
Power of a number can be computed using two methods.
using math.pow() function
>>> math.pow(10,2) 100.0
Using exponentiation operator
>>> 10**2 100