Answers for "python exponentiation"

5

exponent in python

# You can use exponents in python using double stars (**)
2 ** 3 # Output: 8
9 ** 0.5 # Output: 3
Posted by: Guest on February-24-2020
2

python exponentiation

print(5 ** 3) #125
Posted by: Guest on May-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language