求e的指数。
math.exp(x)复制
math.exp(x)
def test(): ret=math.exp(2) print(ret)复制
def test():
ret=math.exp(2)
print(ret)