Home >>Python cmath Module >Python cmath.asin() Method
Python cmath.asin() method in python is used to returns the arc sine 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.asin(x)
Parameter | Description |
---|---|
x | It is required to find the arc sine of a number |
import cmath
print (cmath.asin(5 + 6j))
import cmath
print (cmath.asin(2 + 1j))