Home >>Python cmath Module >Python cmath.acos() Method
Python cmath.acos() method returns the arc cosine value (in radians) of the given complex number and it accepts a number between -1(along the real axis to -∞.) to 1(along the real axis to ∞).
Syntax:cmath.acos(x)
Parameter | Description |
---|---|
X | It is required to find the arc cosine number |
import cmath
print (cmath.acos(7+2j))
import cmath
print (cmath.acos(1+3j))