5. Exponentiation Operator. In Python, you can use the operator **
to raise a number to a power. For example, 2**3
.
Define two variables, base=3
, exponent=4
.
Next, raise base
to the exponent
power, and assign it to a third variable, result
.
Finally, print c
to the console.