exponentiation_operator
🎲 Exponentiation Operator​
Use **
to raise a number to a power. It’s a concise way to perform exponentiation in mathematical expressions.
# 2 to the power of 3
y = 2 ** 3 # 8
# Combining with other math
a = (3 + 2) ** 2 # 25