sympy.factor_list(expression)方法
利用sympy.factor_list()方法,我们可以得到(factor, power)元组形式的数学表达式的因子列表。
语法:factor_list(expression)
参数:
expression –这是一个数学表达式。
返回值:以(factor, power)元组的形式返回给定数学表达式的因子列表。
sympy.factor_list(expression)方法 例# 1:
在本例中,我们可以看到,通过使用sympy.factor_list()方法,我们可以得到给定数学表达式的因子列表。
# import sympy
from sympy import * x = symbols('x')
expr = x**2 * z + 4 * x*y * z + 4 * y**2 * z
print("Mathematical expression : {}".format(expr))
# Use sympy.factor_list() method
f = factor_list(expr)
print("List of factors : {}".format(f))
Output:
Mathematical expression : x**2*z + 4*x*y*z + 4*y**2*z
List of factors : (1, [(z, 1), (x + 2*y, 2)])
sympy.factor_list(expression)方法 例# 2:
# import sympy
from sympy import * x = symbols('x')
expr = (x**2 - 2 * x + 1)
print("Mathematical expression : {}".format(expr))
# Use sympy.factor_list() method
f = factor_list(expr)
print("List of factors : {}".format(f))
Output:
Mathematical expression : x**2 - 2*x + 1
List of factors : (1, [(x - 1, 2)])