Polar Coordinates - Hackerrank solution

 

Polar Co-Ordinates


Objective


Polar coordinates are an alternative way of representing Cartesian coordinates or Complex Numbers.
z=x+yj
is completely determined by its real part and imaginary part .
Here, is the imaginary unit.


Solution:

a=complex(input())
import cmath
print(abs(a))
print(cmath.phase(complex(a)))


Note:

This Code is Verified by all Test Cases.If any error occurs then Comment correct code Below in comment box.

Disclaimer:-

The above hole problem statement is given by hackerrank.com, but the solution is generated by the CodexRitik . if any of the query regarding this post or website fill the following contact form Thank You.

Polar Coordinates - Hackerrank solution Polar Coordinates - Hackerrank solution Reviewed by CodexRitik on June 01, 2020 Rating: 5

No comments:

Powered by Blogger.