python math数学函数

python math.exp()函数用于求e的x次幂,其中 e = 2.718281... 是自然对数的基数。

语法

语法如下:
import math #导入math模块
math.exp( x )

参数

  • x:x为e的指数且为数字,否则报错TypeError

返回值

返回e的x次幂

程序示例

#!/usr/bin/python
# coding=utf-8
import math
print('e1=',math.exp(1))
print('e2=',math.exp(2))
print('e0=',math.exp(0))
#print(math.exp('1')) #报错不能为字符串,TypeError: must be real number, not str 

程序运行结果:

e1= 2.718281828459045
e2= 7.38905609893065
e0= 1.0