當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python math.exp()用法及代碼示例


Python math.exp() 方法

math.exp() 方法是 math 模塊的庫方法,用於獲取 index 形式的數字,它接受一個數字並以 index 格式返回數字(如果數字是x,它返回e**x

注意:如果傳遞除數字以外的任何內容,該方法將返回類型錯誤,“TypeError:a float is required”。

math.exp() 方法的語法:

    math.exp(n)

參數: n– 整數或浮點數。

返回值: float– 它返回一個浮點值,它是數字的 index 形式n

例:

    Input:
    a = 111.111

    # function call
    print(math.exp(a))

    Output:
    1.7984326512709283e+48

用於演示 math.exp() 方法示例的 Python 代碼

# Python code demonstrate example of 
# math.exp() method
import math

# numbers

a = 0
b = 245
c = -102.34
d = 111.111
e = -123.456

# printing values in exp format
print("exp(a):", math.exp(a))
print("exp(b):", math.exp(b))
print("exp(c):", math.exp(c))
print("exp(d):", math.exp(d))
print("exp(e):", math.exp(e))

輸出

exp(a): 1.0
exp(b): 2.5243412626998188e+106
exp(c): 3.583461328080821e-45
exp(d): 1.7984326512709283e+48
exp(e): 2.4195825412645934e-54


相關用法


注:本文由純淨天空篩選整理自 math.exp() method with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。