當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python math.isnan()用法及代碼示例


Python math.isnan() 方法

math.isnan() 方法是 math 模塊的庫方法,用於檢查給定的數是否為 "NaN" (Not a Number),它接受一個數並返回True如果給定的數字是"NaN", 否則返回False

math.isnan() 方法的語法:

    math.isnan(n)

參數: n– 必須檢查是否為 "NaN" 的數字。

返回值: bool– 它返回一個布爾值("True" 或 "False")。

例:

    Input:
    a = 10
    b = float('inf')
    c = float('nan')

    # function call
    print(math.isnan(a))
    print(math.isnan(b))
    print(math.isnan(c))

    Output:
    False
    False
    True

用於演示 math.isnan() 方法示例的 Python 代碼

# python code to demonstrate example of 
# math.isnan() method

# importing math module
import math

# math.isnan() method test on finite value
print(math.isnan(10))
print(math.isnan(0))
print(math.isnan(10.23))
print(math.isnan(0.0))


# math.isnan() method test on infinite and NaN value
print(math.isnan(float('inf')))
print(math.isnan(float('-inf')))
print(math.isnan(float('nan')))

輸出

False
False
False
False
False
True


相關用法


注:本文由純淨天空篩選整理自 math.isnan() method with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。