Python3 math.expm1()方法 -求e 的 x 次冪(次方)減 1

2023-04-25 11:05 更新

Python math 模塊 math 模塊


描述

 math.expm1(x) 方法返回 e 的 x 次冪(次方)減 1,Ex - 1,其中 e = 2.718281... 是自然對(duì)數(shù)的基數(shù)。

math.expm1(x) 方法比調(diào)用 math.exp() 減去 1 更精確。


語(yǔ)法

math.expm1() 方法語(yǔ)法如下:

math.expm1(x)

參數(shù)說(shuō)明:

  • x -- 必需,數(shù)字,指定指數(shù)。如果 x 不是一個(gè)數(shù)字,返回 TypeError。

返回值

一個(gè)浮點(diǎn)值,表示 Ex - 1。


實(shí)例

以下實(shí)例指定不同的指數(shù):

# 導(dǎo)入 math 包
import math

# 指定不同的指數(shù)
print(math.expm1(32))
print(math.expm1(-10.89))

輸出結(jié)果:

78962960182679.69
-0.9999813562576685

Python math 模塊 math 模塊


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)