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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。