summaryrefslogtreecommitdiff
path: root/progs/a87.py
blob: d41eb773e051c5d9e9f05fcb37d38929b88c241d (plain)
1
2
3
4
5
import cmath
def len_complex(a,b):
  cn=complex(a,b)
  length=abs(cn)
  return length