Thursday, November 20, 2025
HomeLanguagesPython – cmath.isclose() function

Python – cmath.isclose() function

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

Syntax: cmath.isclose(a, b, rel_tol = value, abs_tol = value)

Parameter:This method accepts the following parameters.

  • a :This parameter is the first value to check for closeness.
  • b :This parameter is the second value to check for closeness.
  • rel_tol = value :This parameter is the maximum allowed difference between value a and b.
  • abs_tol = value : This parameter is the minimum absolute tolerance

Returns:This method returns a Boolean value.

Below examples illustrate the use of above function:

Example #1 : 

Python3




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


Output:

True
False

Example 2:

Python3




# Python code to implement
# the isclose()function
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# using cmath.isclose() method 
val = cmath.isclose(1 + 2j, 1 + 2j, abs_tol = 0.5
print(val) 
  
val1 = cmath.isclose(1 + 2.2j, 1 + 2j, abs_tol = 0.5
print(val1)


Output:

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

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6776 POSTS0 COMMENTS
Nicole Veronica
11924 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6904 POSTS0 COMMENTS
Ted Musemwa
7160 POSTS0 COMMENTS
Thapelo Manthata
6859 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS