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


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


Python math.log2() 方法

math.log2() 方法是 math 模塊的一個庫方法,它用於獲取一個數字的以 2 為底的對數,它接受一個數字並返回給定數字的以 2 為底的對數。

math.log2() 方法比 log(x, 2) 給出更準確的結果。

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

math.log2() 方法的語法:

    math.log2(x)

參數:x– 是要計算以 2 為底的對數的數字。

返回值: float– 它返回一個浮點值,它是數字的以 2 為底的對數x

例:

    Input:
    x = 21

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

    Output:
    4.392317422778761

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

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

# importing math module
import math

# Base-2 logarithm
x = 21
print("Base-2 logarithm of ", x, " is = ", math.log2(x))

x = 10.23
print("Base-2 logarithm of ", x, " is = ", math.log2(x))

輸出

Base-2 logarithm of  21  is =  4.392317422778761
Base-2 logarithm of  10.23  is =  3.354734239970604


相關用法


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