You are viewing a single comment's thread. Return to all comments →
import cmath z = complex(input()) a = abs(z) g = cmath.phase(z) print(f"{a}") print(f"{g}")
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 →
import cmath z = complex(input()) a = abs(z) g = cmath.phase(z) print(f"{a}") print(f"{g}")