power func python code example
Example 1: power function python
# There are two ways of computing x^y in python:
>>> 3 ** 4
81
>>> pow(3,4)
81
Example 2: how to power in python
2 ** 3 == 8
# There are two ways of computing x^y in python:
>>> 3 ** 4
81
>>> pow(3,4)
81
2 ** 3 == 8