Python sympy.as_two_terms()方法
在sympy.as_two_terms()方法的帮助下,我们可以通过sympy.as_two_terms()方法将数学表达式中的常量值分开,并返回一个元组。
语法 : sympy.as_two_terms()
返回:返回由常数值分隔的元素的元组。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.as_two_terms()方法,我们能够得到由常量值分隔的元素的元组。
# import sympy
from sympy import *
x, y = symbols('x y')
# Using sympy.as_two_terms() method
gfg = (3 * x + 5 * y + 6).as_two_terms()
print(gfg)
输出 :
(6, 3x + 5y)
例子#2 :
# import sympy
from sympy import *
x, y = symbols('x y')
# Using sympy.as_two_terms() method
gfg = (x**2 + 4).as_two_terms()
print(gfg)
输出 :
(4, x**2)