Thursday, May 7, 2026
HomeLanguagesPython – cmath.polar() function

Python – cmath.polar() function

cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.polar() function is used to convert a complex number to polar coordinates. The value passed in this function can be int, float, and complex numbers.

Syntax: cmath.polar(x)

Parameter:This method accepts the following parameters.

  • x :This parameter is the number to find polar coordinates of.

Returns:This method returns a tuple value that represent the polar coordinates.

Below examples illustrate the use of above function:

Example #1 : 

Python3




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


Output:

(1.0, 0.0)

Example 2:

Python3




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


Output:

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

2 COMMENTS

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6891 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12105 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6962 POSTS0 COMMENTS