python power 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
Example 3: exponent in python
# You can use exponents in python using double stars (**)
2 ** 3 # Output: 8
9 ** 0.5 # Output: 3
Example 4: python exponentiation
print(5 ** 3) #125
Example 5: python pow
pow(x,y)# ==x^y
Example 6: how to take a number to a power in python
#16 to the power of 2
answer = 16**2