Polar Coordinates

  • + 0 comments

    import cmath z = complex(input()) a = abs(z) g = cmath.phase(z) print(f"{a}") print(f"{g}")