当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。