You are viewing a single comment's thread. Return to all comments →
In barely few lines...
import cmath complex_num = complex(input()) print(abs(complex_num)) print(cmath.phase(complex_num))
Seems like cookies are disabled on this browser, please enable them to open this website
Polar Coordinates
You are viewing a single comment's thread. Return to all comments →
In barely few lines...