Python/ref math expm1

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

<languages />

Python math.expm1()方法

Methods数学方法

找到一个数字的指数值-1:

    #Import math Library
import math 

#Return the exponential value of 
    a number - 1 

    print(math.expm1(32))
print(math.expm1(-10.89))

定义和用法

The math.expm1() 方法返回E x - 1.

“ E”是对数自然系统的底数(约2.718282),而x是传递给它的数字。

此功能比调用更准确 math.exp() 并减去1。

句法

math.expm1(x)

参数值

参数 描述
x 需要。指定指数

技术细节

返回值: A

float 值,代表E x - 1

Python版本: 2.7

Methods数学方法