求 x 的 y 次方。
math.pow(x,y)复制
math.pow(x,y)
def test(): ret=math.pow(2,4) print(ret)复制
def test():
ret=math.pow(2,4)
print(ret)