Python Exponentiation Operator

In Python, Arithmetic Exponentiation Operator takes two operands and returns the result of the first operand raised to the power of second operand.

Syntax

The syntax to find the base a raised to the power b using Exponentiation Operator is

a ** b

The above expression returns a number.

ADVERTISEMENT

Example

In the following program, we take two numbers: a, b; and find the value of a raised to the power b.

main.py

a = 5
b = 4

result = a ** b

print(result)
Try Online

Output

625

Conclusion

In this Python Tutorial, we learned about Arithmetic Exponentiation Operator, its syntax, and usage, with examples.