demo_oper_exp.py:
x = 2 y = 5 print(x ** y) #same as 2*2*2*2*2
C:\Users\My Name>python demo_oper_exp.py
32