Python 3 – exp()方法

Python 3 – exp()方法

描述

exp() 方法返回指数函数,即 e的 x次方。

语法

下面是 exp() 方法的语法 –

import math

math.exp( x )

注意 − 此函数不能直接使用,我们需要导入 math 模块,然后使用 math 静态对象调用此函数。

参数

x − 这是一个数值表达式。

返回值

此方法返回指数函数,即 e的 x次方。

例 子

以下示例演示了 exp() 方法的使用。

#!/usr/bin/python3
import math   # 这会导入 math 模块

print ("math.exp(-45.17) : ", math.exp(-45.17))
print ("math.exp(100.12) : ", math.exp(100.12))
print ("math.exp(100.72) : ", math.exp(100.72))
print ("math.exp(math.pi) : ", math.exp(math.pi))

输出

运行上述程序时,它会产生以下结果 –

math.exp(-45.17) :  2.4150062132629406e-20
math.exp(100.12) :  3.0308436140742566e+43
math.exp(100.72) :  5.522557130248187e+43
math.exp(math.pi) :  23.140692632779267

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程