Computer >> Computer tutorials >  >> Programming >> Python

How to find power of a number in Python?


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