Python/ref math asin
来自菜鸟教程
<languages />
Python math.asin()方法
例
返回不同数字的反正弦值:
# Import math Library import math # Return the arc sine of numbers print(math.asin(0.55)) print(math.asin(-0.55)) print(math.asin(0)) print(math.asin(1)) print(math.asin(-1))
定义和用法
The
math.asin()
方法返回数字的反正弦值。
注意:
传入的参数
math.asin()
必须介于-1到1之间。
Tip:
math.asin(1)
将返回PI / 2的值,并且
math.asin(-1)
将返回-PI / 2的值。
句法
math.asin(x)
参数值
参数 | 描述 |
---|---|
x | 需要。-1到1之间的数字。If
x 不是数字,则返回TypeError |
技术细节
返回值: | A
|
Python版本: | 1.4 |