Exponent¶
Exponent operator (**) can be used to calculate exponentiation result of two number.
Syntax
operand1 ** operand2
Example
2 ** 3
# 8
Exponent operator (**) can be used to calculate exponentiation result of two number.
operand1 ** operand2
2 ** 3
# 8