Polar Coordinates

  • + 0 comments

    for Python3 Platform

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