Python cmath.isfinite() Method

cmath Methods : Check whether a complex value is finite or not

Definition and Usage

The cmath.isfinite() method checks whether a complex value is finite, or not. This method returns a Boolean value: True if the value is finite, otherwise False.

Syntax

cmath.isfinite(x)

Parameter Values

Parameter Description
x Required. The value to check if it is finite or not

Technical Details

Return Value: A bool value, True if the value is finite, otherwise False
Python Version: 3.2