Thursday, October 9, 2025
HomeLanguagesPython – cmath.isfinite() function

Python – cmath.isfinite() function

cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.isfinite() function is used to check whether the value is finite, or not. The value passed in this function can be int, float, and complex numbers.

Syntax: cmath.isfinite(x)

Parameter:This method accepts the following parameters.

  • x :This parameter is the value to check for finite.

Returns:This method returns a Boolean value.

Below examples illustrate the use of above function:

Example #1 : 

Python3




# Python code to implement
# the isfinite()function
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# using cmath.isfinite() method 
val = cmath.isfinite(1 + 2j
print(val)


Output:

True

Example 2:

Python3




# Python code to implement
# the isfinite()function
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# using cmath.isfinite() method 
val = cmath.isfinite(complex(3.0, float('inf')))
print(val)


Output:

False
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32344 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6714 POSTS0 COMMENTS
Nicole Veronica
11877 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11940 POSTS0 COMMENTS
Shaida Kate Naidoo
6834 POSTS0 COMMENTS
Ted Musemwa
7094 POSTS0 COMMENTS
Thapelo Manthata
6789 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS