Python math.log2() 方法

实例

求不同数字的以 2 为底的对数

  1. # 导入 math 库
  2. import math
  3. # 返回不同数字的以 2 为底的对数
  4. print(math.log2(2.7183))
  5. print(math.log2(2))
  6. print(math.log2(1))

定义与用法

math.log2() 方法返回数字的以 2 为底的对数。


语法

  1. math.log2(x)

参数值

参数描述
x必填。指定要计算其对数的值。如果该值为 0 或负数,则返回 ValueError。如果该值不是数字,则返回 TypeError

技术细节

返回值:一个 float 值,表示数字的以 2 为底的对数
Python 版本:3.3

分类导航