Open In App

Python | sympy.sec() method

Last Updated : 02 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report

With the help of sympy.sec() method, we are able to find the value of sec theta using sympy.sec() function.

Syntax : sympy.sec()
Return : Return value of sec theta.

Example #1 :
In this example we can see that by using sympy.sec() method, we can find the value of sec theta.




# import sympy
from sympy import *
  
# Use sympy.sec() method
gfg = simplify(sec(pi / 6))
    
print(gfg)


Output :

2*sqrt(3)/3

Example #2 :




# import sympy
from sympy import *
  
# Use sympy.sec() method
gfg = simplify(sec(pi / 3))
    
print(gfg)


Output :

2



Next Article
Article Tags :
Practice Tags :

Similar Reads