Friday, April 3, 2026
HomeLanguagesPython | sympy.factor_list() method

Python | sympy.factor_list() method

With the help of sympy.factor_list() method, we can get a list of factors of a mathematical expression in SymPy in the form of (factor, power) tuple.

Syntax: factor_list(expression)

Parameters:
expression – It is a mathematical expression.

Returns: Returns a list of factors of the given mathematical expression in the form of (factor, power) tuple.

Example #1:
In this example we can see that by using sympy.factor_list() method, we can get a list of factors of a given mathematical expression.




# 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)])

Example #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)])
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32512 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6886 POSTS0 COMMENTS
Nicole Veronica
12006 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12100 POSTS0 COMMENTS
Shaida Kate Naidoo
7015 POSTS0 COMMENTS
Ted Musemwa
7259 POSTS0 COMMENTS
Thapelo Manthata
6971 POSTS0 COMMENTS
Umr Jansen
6960 POSTS0 COMMENTS