Open In App
Related Articles

SymPy | Prufer.size() in Python

Improve Article
Improve
Save Article
Save
Like Article
Like

Prufer.size() : size() is a sympy Python library function that returns the size of the Prufer sequence.

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

Return :
size of the Prufer sequence

Code #1 : size() Example




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


Output :

Prufer a size : 125

Code #2 : size() Example




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


Output :

Prufer b size : 262144


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 26 Aug, 2019
Like Article
Save Article
Similar Reads
Related Tutorials