Python sympy.series()方法
在sympy.series()方法的帮助下,我们可以通过sympy.series()方法找到一些数学函数和三角函数的序列。
语法 : sympy.series()
返回:返回一系列的函数。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.series()方法,我们能够找到一些三角函数的序列。
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.series() method
gfg = cos(x).series()
print(gfg)
输出 :
1 – x2/2 + x4/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 + x3/3 + 2*x5/15 + O(x**6)