python if 不等于nan
时间: 2023-12-13 17:34:20 浏览: 152
nan_test_python_NAN_
在Python中,可以使用math.isnan()函数来判断一个数是否为NaN。如果一个数不等于NaN,可以使用!=运算符进行判断。下面是一个例子:
```python
import math
x = float('nan')
if math.isnan(x):
print('x is NaN')
else:
print('x is not NaN')
if x != x:
print('x is NaN')
else:
print('x is not NaN')
```
输出:
```
x is NaN
x is NaN
```
阅读全文