开发手册 欢迎您!
软件开发者资料库

Python math.log2() 方法

Python math模块中定义了一些数学函数。由于这个模块属于编译系统自带,因此它可以被无条件调用。该模块还提供了与用标准C定义的数学函数的接口。本文主要介绍Python math.log2() 方法的使用,以及相关示例代码。

Python math.log2() 方法

Python Math方法

例如:

查找不同数字的以2为底的对数

# Import math Libraryimport math# Return the base-2 logarithm of different numbersprint(math.log2(2.7183))print(math.log2(2))print(math.log2(1))

1、定义和用法

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

2、调用语法

math.log2(x)

3、参数说明

参数

描述

x

必需的参数, 指定要为其计算对数的值。

 如果值为0或负数,则返回ValueError。

 如果该值不是数字,则返回TypeError

4、方法说明

返回值:

float值,表示数字的以2为底的对数

Python Version:

3.3

Python Math方法