Python/ref cmath isfinite

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python cmath.isfinite()方法

❮cmath方法

检查复数值是否有限:

    #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))

定义和用法

The cmath.isfinite() 方法检查复数值是否有限。此方法返回一个布尔值: True 如果值是有限的,否则 False .

句法

    cmath.isfinite(x)
  

参数值

参数 描述
x 需要。要检查的值是否有限

技术细节

返回值: A

bool 值, True 如果值是有限的,否则 False

Python版本: 3.2

❮cmath方法