The ASIN () method returns the sine of the X, expressed in radians.
Grammar
The following is the ASIN () method syntax:
ASIN (x)
Note: This function is not directly accessible, so we need to import the math module and then call this function with the static object of math.
Parameters
- X-This must be within the range of a numeric value of 1 to 1, and if X is greater than 1, it will produce an error.
return value
This method returns the X-anyway chord, expressed in radians.
Example
The following example shows the use of the ASIN () method.
#!/usr/bin/pythonimport Mathprint "ASIN (0.64):", Math.asin (0.64) print "ASIN (0):", Math.asin (0) print "ASIN ( -1):", Mat H.asin ( -1) print "ASIN (1):", Math.asin (1)
When we run the above program, it produces the following results:
ASIN (0.64): 0.694498265627asin (0): 0.0asin ( -1): -1.57079632679asin (1): 1.57079632679