summaryrefslogtreecommitdiff
path: root/progs/a487.py
blob: 01efda16fe4bdf131c580e72847eecd43a6d7cd3 (plain)
1
2
3
4
5
import cmath
def angle_complex(a,b):
  cn=complex(a,b)
  angle=cmath.phase(a+b)
  return angle