Challenge - #35 - Polar Coordinates Get link Facebook X Pinterest Email Other Apps November 18, 2020 # Enter your code here. Read input from STDIN. Print output to STDOUT import cmath z = complex ( input ()) r , phi = cmath.polar(z) print (r,phi,sep = '\n' ) Read more