Horje
Python | sympy.sec() method

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




Reffered: https://www.geeksforgeeks.org


Python

Related
Python | sympy.cofactors() method Python | sympy.cofactors() method
Python | sympy.lcm() method Python | sympy.lcm() method
Python | sympy.Rational() method Python | sympy.Rational() method
pwd module in Python pwd module in Python
grp module in Python grp module in Python

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
10