Thursday, October 2, 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
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11927 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7079 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS