Python math.exp() 函数

返回上一级

Python math.exp() 函数返回 x 的指数 ex

导入模块

import math

语法

math.exp( x )

参数

参数 说明
x 数值表达式

返回值

x的指数 ex

范例

下面的代码使用 math.exp() 方法返回一些数值的指数

>>> import math
>>> math.exp(-45.17)
2.4150062132629406e-20
>>> math.exp(100.12)
3.0308436140742566e+43
>>> math.exp(100.72)
5.522557130248187e+43
>>> math.exp(119L)
4.797813327299302e+51
>>> math.exp(math.pi)
23.140692632779267

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.