Python3 Func Number Asin
# Python3.x Python3 asin() Function
[ Python3 Numbers](#)
* * *
## Description
**asin()** returns the arcsine of x in radians.
* * *
## Syntax
Here is the syntax for the asin() method:
import math math.asin(x)
**Note:** asin() cannot be accessed directly. You need to import the math module and then call the method via the math static object.
* * *
## Parameters
* x -- A numeric value between -1 and 1. If x is greater than 1, an error will occur.
* * *
## Return Value
Returns the arcsine of x in radians.
* * *
## Example
The following example demonstrates the use of the asin() method:
#!/usr/bin/python3import math print ("asin(0.64) : ", math.asin(0.64))print ("asin(0) : ", math.asin(0))print ("asin(-1) : ", math.asin(-1))print ("asin(1) : ", math.asin(1))
The output of the above example is:
asin(0.64) : 0.694498265626556 asin(0) : 0.0 asin(-1) : -1.5707963267948966 asin(1) : 1.5707963267948966
[ Python3 Numbers](#)
YouTip