Python cmath.isfinite() 方法
实例
检查复数值是否有限:
#import cmath for complex number operations
import cmath
#find
whether a complex number is finite or not
print (cmath.isfinite(2 + 3j))
print (cmath.isfinite(complex(5.0,float('inf'))))
print
(cmath.isfinite(float('inf')+ 5j))
亲自试一试 »
定义和用法
cmath.isfinite()
方法检查复数值是否有限。 此方法返回一个布尔值:True
如果该值为
有限,否则 False
.
语法
cmath.isfinite(x)
参数值
参数 | 描述 |
---|---|
x | 必需。检查它是否是有限的值 |
技术细节
返回值: | A bool value, True if the value is
finite, otherwise False |
---|---|
Python 版本: | 3.2 |