Python/ref math exp

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.exp()方法

Methods数学方法

将'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

float 值,代表“ E”提升至 x

Python版本: 1.6.1

Methods数学方法