Python math.exp() 方法
定义和用法
The math.exp()
method returns E raised to the power of x (Ex).
'E' 是自然对数系统的底数(约为 2.718282),x 是传递给它的数字。
语法
math.exp(x)
参数值
参数 | 描述 |
---|---|
x | 必需。指定指数 |
技术细节
返回值 | A float value, representing 'E' raised to the power of x |
---|---|
Python 版本 | 1.6.1 |