Friday, October 24, 2025
HomeLanguagesPython – cmath.isnan() function

Python – cmath.isnan() function

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

Syntax: cmath.isnan(x)

Parameter:This method accepts the following parameters.

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

Returns:This method returns a Boolean value.

Below examples illustrate the use of above function:

Example #1 : 

Python3




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


Output:

False

Example 2:

Python3




# Python code to implement
# the isnan()function
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# using cmath.isnan() method 
val = cmath.isnan(1 + float('nan')) 
print(val)


Output:

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

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS