python nan如何判断
时间: 2023-07-07 19:26:57 浏览: 81
nan_test_python_NAN_
在 Python 中,可以使用 `math.isnan()` 函数来判断一个数是否为 NaN(Not a Number)。该函数会返回一个布尔值,如果输入的参数是 NaN,则返回 True,否则返回 False。下面是一个例子:
```python
import math
x = float('nan')
if math.isnan(x):
print('x is NaN')
else:
print('x is not NaN')
```
输出:
```
x is NaN
```
阅读全文