summaryrefslogtreecommitdiff
path: root/progs/a953.py
blob: fd6c8bda626cd49df6c0de55af3301a603d1815b (plain)
1
2
3
4
5
6
import cmath
def polar_rect(x,y):
 cn = complex(x,y)
 cn=cmath.polar(cn)
 cn1 = cmath.rect(2, cmath.pi)
 return (cn,cn1)