Python math.nan 常量

实例

打印常量 nan 的值:

  1. # 导入 math 库
  2. import math
  3. # Print the value of nan
  4. print (math.nan)

定义与用法

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

nan 常量相当于 float('nan').


语法

  1. math.nan

技术细节

返回值:一个 float 值, nan (不是数字)
Python 版本:3.5

分类导航