代码示例:(标识:python_oper_exp)
python_oper_exp.py
x = 2
y = 5

print(x ** y) #same as 2*2*2*2*2
运行结果: