Polar Coordinates

  • + 0 comments
    from cmath import phase
    z = complex(input())
    print(abs(z))
    print(phase(z))