Python3 math.nan常量 - 非法数字

2023-04-23 17:57 更新

Python math 模块 math 模块


描述

Python math.nan 返回一个浮点值 nan(not a number,不是一个数字),这个值不是一个合法数字。

math.nan 相当于 float('nan') 的输出。


语法

math.nan 常量语法如下:

math.nan

返回值

返回一个浮点数 nan。


实例

以下实例返回 nan:

# 导入 math 包
import math

# 输出 nan
print (math.nan)

# 输出 nan 类型
print (type(math.nan))

输出结果:

nan
<class 'float'>

Python math 模块 math 模块


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号