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

Python math.nan 常数

Python Math方法

例如:

打印nan的值:

# Import math Library
import math

# 打印nan的值
print (math.nan)

1、定义和用法

math.nan常量返回浮点nan(不是数字)值。 此值不是合法数字。

nan常数等效于float('nan')

2、调用语法

math.nan

3、方法说明

返回值:

float值,nan(不是数字)

Python Version:

3.5

Python Math方法

推荐文档