Polar Coordinates

  • + 0 comments

    For Python3 Platform

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