Open In App

Python | sympy.acsc() method

Last Updated : 17 Jul, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of sympy.acsc() method, we are able to find the value of cosine inverse using sympy.acsc() function.
Syntax : sympy.acsc() Return : Return value of cosine inverse.
Example #1 : In this example we can see that by using sympy.acsc() method, we can find the value of cosine inverse. Python3 1=1
# import sympy
from sympy import *

# Use sympy.acsc() method
gfg = simplify(acsc(0.5))
  
print(gfg)
Output :
1.5707963267949 - 1.31695789692482*I
Example #2 : Python3 1=1
# import sympy
from sympy import *

# Use sympy.acsc() method
gfg = simplify(acsc(0.8))
  
print(gfg)
Output :
1.5707963267949 - 0.693147180559945*I

Next Article
Article Tags :
Practice Tags :

Similar Reads