Python math.log2(x) 方法返回 x 以 2 为底的对数。
math.log2() 方法语法如下:
math.log2(x)
参数说明:
返回一个整数浮点数 float,表示一个数字以 2 为底的自然对数。
以下实例返回一个数字以 2 为底的自然对数:
# 导入 math 包 import math # 输出一个数字以 2 为底的自然对数 print(math.log2(2.7183)) print(math.log2(2)) print(math.log2(1))
输出结果:
1.4427046851812222 1.0 0.0