<languages />
Python cmath.infj常数
❮cmath方法
例
打印复杂的无穷大:
#Import cmath Library
import cmath
# Print complex infinity
print (cmath.infj)
定义和用法
The
cmath.infj
常数返回复数的正无穷大。返回值的实部为0,虚部为正无穷大。
cmath.infj常量等效于
complex(0.0, float("inf"))
.
句法
cmath.infj
技术细节
返回值:
|
A
complex
值,表示复数无穷大的值
|
Python版本:
|
3.6
|
❮cmath方法