当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。