Python| sympy.asin() 方法
在sympy.asin(x)
方法的帮助下,我们能够找到 sine theta 的倒数。
Syntax : sympy.asin(x)
Return : Return the value of inverse sine theta.
示例 #1:
在给定的示例中,我们可以看到通过使用sympy.asin(x)
方法,我们可以找到正弦 theta 的倒数。
# import sympy
from sympy import * x, y, z = symbols('x y z')
# Using sympy.asin() method
gfg_exp = asin(1)
print(gfg_exp)
输出 :
pi/2
示例 #2:
# import sympy
from sympy import * x, y, z = symbols('x y z')
# Using sympy.asin() method
gfg_exp = asin(1 / 2)
print(gfg_exp)
输出 :
0.523598775598299