python power symbol code example
Example 1: exponent in python
# You can use exponents in python using double stars (**)
2 ** 3 # Output: 8
9 ** 0.5 # Output: 3
Example 2: power in python
#The ouptut will be x ^ y
x**y
# You can use exponents in python using double stars (**)
2 ** 3 # Output: 8
9 ** 0.5 # Output: 3
#The ouptut will be x ^ y
x**y