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


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


Python math.log() 方法

math.log() 方法是 math 模塊的一個庫方法,用於求給定數以 e 為底的自然對數(默認)。它接受數字和底數(可選)並返回自然對數。

注意:如果我們提供除數字以外的任何其他內容,該方法將返回 TypeError - “TypeError:a float is required”。

math.log() 方法的語法:

    math.log(x [, base])

參數:

  • x- 是要計算其對數的數字。
  • base- 是一個可選參數,用於定義對數的任何特定底數。

返回值: float- 它返回一個浮點值,它是數字的自然對數或特定底數的對數x

例:

    Input:
    x = 21

    # function call
    print(math.log(x))

    Output:
    3.044522437723423

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

# python code to demonstrate example of 
# math.log() method

# importing math module
import math

# log() with 1 parameter
x = 21
print("Natural logarithm of ", x, " is = ", math.log(x))

# log() with 2 parameters
x = 21
base = 5
print("logarithm of ", x, " with base ", base, " is = ", math.log(x, base))

輸出

Natural logarithm of  21  is =  3.044522437723423
logarithm of  21  with base  5  is =  1.8916681496081529


相關用法


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