Home >>Python cmath Module >Python cmath.acosh() Method
Python cmath.acosh() method returns the inverse hyperbolic cosine of a complex given number in radians and it accepts a number.
Syntax:cmath.acosh(x)
Parameter | Description |
---|---|
X | It is required to find the inverse hyperbolic cosine of a number |
import cmath
print (cmath.acos(4 + 8j))
import cmath
print (cmath.acos(4 + 1j))