test_acos.py 145 B

1234
  1. #!/usr/bin/env python
  2. import cmath
  3. x = complex(0.42312341412412398237, 1.32312314124141232987987)
  4. print("value x=",x," acos(x)=", cmath.acos(x))