Python cmath.isnan() 方法
实例
检查复数是否为NaN:
#import cmath for complex number operations
import cmath
#find
whether a complex number is NaN or not
print (cmath.isnan(12 +
float('nan')))
print (cmath.isnan(2 + 3j))
亲自试一试 »
定义和用法
cmath.isnan()
方法检查值是否为 nan(非数字)。 此方法返回一个布尔值:如果值为 nan,则返回 True
,否则返回 False
语法
cmath.isnan(x)
参数值
参数 | 描述 |
---|---|
x | 必需。检查 NaN 的值 |
技术细节
返回值: | bool 值,如果复数的任何部分(实部或虚部)为 NaN,则 True ,否则 True 代码类="w3-codespan">假 |
---|---|
Python 版本: | 2.6 |