Python/ref math exp
来自菜鸟教程
<languages />
Python math.exp()方法
例
将'E'返回为不同数字的幂:
#Import math Library import math #find the exponential of the specified value print(math.exp(65)) print(math.exp(-6.89))
定义和用法
The
math.exp()
方法返回E升为x(E
x
).
“ E”是对数自然系统的底数(约2.718282),而x是传递给它的数字。
句法
math.exp(x)
参数值
参数 | 描述 |
---|---|
x | 需要。指定指数 |
技术细节
返回值: | A
|
Python版本: | 1.6.1 |