Python math.exp() 函数
Python math.exp() 函数返回 x 的指数 ex
导入模块
import math
语法
math.exp( x )
参数
参数 | 说明 |
---|---|
x | 数值表达式 |
返回值
x的指数 ex
范例
下面的代码使用 math.exp() 方法返回一些数值的指数
>>> import math >>> math.exp(-45.17) 2.4150062132629406e-20 >>> math.exp(100.12) 3.0308436140742566e+43 >>> math.exp(100.72) 5.522557130248187e+43 >>> math.exp(119L) 4.797813327299302e+51 >>> math.exp(math.pi) 23.140692632779267