python e to the power code example
Example 1: euler number python
from math import e
Example 2: power function python
# There are two ways of computing x^y in python:
>>> 3 ** 4
81
>>> pow(3,4)
81
Example 3: how to power in python
2 ** 3 == 8
Example 4: how to take a number to a power in python
#16 to the power of 2
answer = 16**2
Example 5: power in python
#The ouptut will be x ^ y
x**y