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
相关用法
- Python math.isqrt()用法及代码示例
- Python math.isinf()用法及代码示例
- Python math.isfinite()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.cosh()用法及代码示例
- Python math.acosh()用法及代码示例
- Python math.fmod()用法及代码示例
- Python math.fsum()用法及代码示例
- Python math.remainder()用法及代码示例
- Python math.asinh()用法及代码示例
- Python math.atanh()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math.log1p()用法及代码示例
- Python math.gcd()用法及代码示例
- Python math.frexp()用法及代码示例
- Python math.ldexp()用法及代码示例
- Python math.acos()用法及代码示例
- Python math.sin()用法及代码示例
- Python math.sqrt()用法及代码示例
- Python math.asin()用法及代码示例
注:本文由纯净天空筛选整理自 math.isnan() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。