Friday, November 21, 2025
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

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11995 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS