Python cmath.infj 常量
实例
Print complex infinity:
#Import cmath Library
import cmath
# Print complex infinity
print (cmath.infj)
亲自试一试 »
定义和用法
cmath.infj
常量返回一个复数正无穷大。 返回的实部为 0,虚部为正无穷。
cmath.infj 常量等价于 complex(0.0, float("inf"))
。
语法
cmath.infj
技术细节
返回值: | 一个complex 复数值,代表复数无穷大的值 |
---|---|
Python 版本: | 3.6 |