python怎么判断是不是 nan
时间: 2023-10-03 20:05:28 浏览: 246
nan_test_python_NAN_
在 Python 中,可以使用 math 模块或 numpy 模块来判断一个数是否为 NaN (Not a Number)。
使用 math 模块的 isnan() 函数判断:
```python
import math
x = float('nan')
if math.isnan(x):
print('x is NaN')
```
使用 numpy 模块的 isnan() 函数判断:
```python
import numpy as np
x = np.nan
if np.isnan(x):
print('x is NaN')
```
这两种方法都可以用来判断一个数是否为 NaN。
阅读全文