Python| sympy.series() 方法
借助sympy.series()
方法,我们可以通过 sympy.series() 方法找到一些数学函数和三角表达式的sympy.series()
。
Syntax : sympy.series()
Return : Return a series of functions.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.series()
方法,我们能够找到一些三角函数的序列。
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.series() method
gfg = cos(x).series()
print(gfg)
输出 :
1 – x**2/2 + x**4/24 + O(x**6)
示例 #2:
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.series() method
gfg = tan(x).series()
print(gfg)
输出 :
x + x**3/3 + 2*x**5/15 + O(x**6)