Thursday, October 2, 2025
HomeLanguagesSymPy | Prufer.prufer_repr() in Python

SymPy | Prufer.prufer_repr() in Python

Prufer.prufer_repr() : prufer_repr() is a sympy Python library function that returns the Prufer sequence for the Prufer object. By removing the highest numbered vertex, then recording the node it was attached to, and finally continuing until only two vertices remain, the sequence can be found.

Syntax :
sympy.combinatorics.Prufer.prufer.prufer_repr()

Return :
Prufer sequence for the Prufer object

Code #1 : prufer_repr() Example




# Python code explaining
# SymPy.Prufer.prufer_repr()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.prufer import Prufer
  
# Using from 
# sympy.combinatorics.prufer.Prufer.prufer_repr()
  
# Creating Prufer
a = Prufer([1, 2, 3], [2, 4, 5])
  
# prufer_repr value
print ("Prufer a prufer_repr : ", a.prufer_repr)


Output :

Prufer a prufer_repr : [1, 2, 3]

Code #2 : prufer_repr() Example




# Python code explaining
# SymPy.Prufer.prufer_repr()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.prufer import Prufer
  
# Using from 
# sympy.combinatorics.prufer.Prufer.prufer_repr()
  
# Creating Prufer
b = Prufer([1, 2, 3, 2, 4, 5], [6, 7], [8])
  
# prufer_repr value
print ("Prufer b prufer_repr : ", b.prufer_repr)


Output :

Prufer b prufer_repr : [1, 2, 3, 2, 4, 5]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11926 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7079 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS