Python| sympy.primitive() 方法
借助sympy.primitive()
方法,我们可以使用sympy.primitive()
方法找到数学表达式的公共部分。
Syntax : sympy.primitive()
Return : Return a tuple having common part separated from mathematical expression.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.primitive()
方法,我们能够从数学表达式中找到公共部分。
# import sympy
from sympy import *
x, y = symbols('x y')
# Using sympy.primitive() method
gfg = (3 * x + 9 * y).primitive()
print(gfg)
输出 :
(3, x + 3*y)
示例 #2:
# import sympy
from sympy import *
x, y = symbols('x y')
# Using sympy.primitive() method
gfg = (2 * x / 7 + 4 * y / 14).primitive()
print(gfg)
输出 :
(2/7, x + y)