Python cmath.nanj 常量
实例
打印nanj的值:
#Import cmath Library
import cmath
# 打印 nan 的值
print (cmath.nanj)
print (type(cmath.nanj))
亲自试一试 »
定义和用法
cmath.nanj
常量返回一个复杂的 nan(非数字)值。 该值的实部为 0,虚部为 nan。
nanj 常量等价于 complex(0.0,float("nan")
。
语法
cmath.nanj
技术细节
返回值: | complex 复数值,nan(非数字) |
---|---|
Python 版本: | 3.6 |