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

公眾號
微信公眾號

編程獅公眾號