math.asin_带有Python示例的math.asin()方法

math.asin

Python math.asin()方法 (Python math.asin() method)

math.asin() method is a library method of math module, it is used to get the arc sine, it accepts a number between -1 to 1 and returns the arc sine value (in radians) of the given number.

math.asin()方法数学模块的库方法,用于获取反正弦值,它接受介于-1到1之间的数字,并返回给定数字的反正弦值(弧度)。

Note: math.asin() method accepts the only number between the range of -1 to 1, if we provide number out of the range, it returns a ValueError - "ValueError: math domain error", and if we provide anything else except the number, it returns error TypeError - "TypeError: a float is required".

注意: math.asin()方法仅接受介于-1到1之间的数字,如果我们提供的数字超出该范围,则它将返回ValueError- “ ValueError:math domain error” ,并且如果我们提供除此以外的任何内容数字,它返回错误TypeError- “ TypeError:需要浮点数”

Syntax of math.asin() method:

math.asin()方法的语法:

    math.asin(x)

Parameter(s): x – is the number whose arc sine to be calculated.

参数: x –是要计算其反正弦值的数字。

Return value: float – it returns a float value that is the arc sine value of the number x.

返回值: float-返回浮点值,该浮点值是数字x的反正弦值。

Example:

例:

    Input:
    a = 0.278

    # function call
    print(math.asin(a))

    Output:
    0.281711406942867

Python代码演示math.asin()方法的示例 (Python code to demonstrate example of math.asin() method)

# python code to demonstrate example of 
# math.asin() method 

# importing math module
import math

# number
a = -1
print("asin(",a,") is = ", math.asin(a))

a = 0
print("asin(",a,") is = ", math.asin(a))

a = 0.278
print("asin(",a,") is = ", math.asin(a))

a = 1
print("asin(",a,") is = ", math.asin(a))

Output

输出量

asin( -1 ) is =  -1.5707963267948966
asin( 0 ) is =  0.0
asin( 0.278 ) is =  0.281711406942867
asin( 1 ) is =  1.5707963267948966

ValueError example

ValueError示例

# python code to demonstrate example of 
# math.asin() method with an exception

# importing math module
import math

# number
a = 2
print("asin(",a,") is = ", math.asin(a))

Output

输出量

Traceback (most recent call last):
  File "/home/main.py", line 9, in <module>
    print("asin(",a,") is = ", math.asin(a))
ValueError: math domain error

TypeError example

TypeError示例

# python code to demonstrate example of 
# math.asin() method with an expection

# importing math module
import math

# number
a = "2"
print("asin(",a,") is = ", math.asin(a))

Output

输出量

Traceback (most recent call last):
  File "/home/main.py", line 9, in <module>
    print("asin(",a,") is = ", math.asin(a))
TypeError: a float is required


翻译自: https://www.includehelp.com/python/math-asin-method-with-example.aspx

math.asin

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值