Python Math: Convert Polar coordinates to rectangular coordinates
Python Math: Exercise-35 with Solution
Write a Python program to convert Polar coordinates to rectangular coordinates.
Sample Solution:
Python Code:
import cmath
cn = complex(3,4)
# get polar coordinates
print("Polar Coordinates: ",cmath.polar(cn))
# polar to rectangular. Format for input is (length, ‹angle in radians›).
#Returns a complex number
cn1 = cmath.rect(2, cmath.pi)
print("Polar to rectangular: ",cn1)
Sample Output:
Polar Coordinates: (5.0, 0.9272952180016122) Polar to rectangular: (-2+2.4492935982947064e-16j)
Flowchart:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to get the length and the angle of a complex number.
Next: Write a Python program to find the maximum and minimum numbers from the specified decimal numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/math/python-math-exercise-35.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics