Python | sympy.asec() method
With the help of sympy.asec()
method, we are able to find the value of sec inverse using sympy.asec()
function.
Syntax :
sympy.asec()
Return : Return value of sec inverse.
Example #1 :
In this example we can see that by using sympy.asec()
method, we can find the value of sec inverse.
# import sympy from sympy import * # Use sympy.asec() method gfg = simplify(asec( 1 )) print (gfg) |
chevron_right
filter_none
Output :
0
Example #2 :
# import sympy from sympy import * # Use sympy.asec() method gfg = simplify( 0 )) print (gfg) |
chevron_right
filter_none
Output :
oo
Recommended Posts:
- class method vs static method in Python
- Python | next() method
- Python | set() method
- Python | os.dup() method
- Python | os.getgroups() method
- Python | sympy.sec() method
- Python | Tensorflow tan() method
- Python | sympy.sin() method
- Python | os.getenvb() method
- Python | os.openpty() method
- Python | sympy.tan() method
- Python | sympy.nT() method
- Python | os.get_exec_path() method
- Python | sys.getrecursionlimit() method
- Python | os.getcwdb() method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.