Saturday, September 21, 2024
Google search engine
HomeLanguagesPython | sympy.sec() method

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

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments