Python math.exp() 方法

实例

返回 E 次不同数字的幂:

  1. #Import math Library
  2. import math
  3. #find the exponential of the specified value
  4. print(math.exp(65))
  5. print(math.exp(-6.89))

定义与用法

math.exp() 方法返回 (Ex),即 E 次 x 幂.

‘E’ 是自然对数系统的基数(约为2.718282),x是传递给它的数字。


语法

  1. math.exp(x)

参数值

参数描述
x必填。指定的指数

技术细节

返回值:一个 float 值, E 次 x
Python 版本:1.6.1

分类导航