Saturday, November 22, 2025
HomeLanguagesSymPy | Permutation.length() in Python

SymPy | Permutation.length() in Python

Permutation.length() : length() is a sympy Python library function that finds the number of integers moved by the permutation.

Syntax : sympy.combinatorics.permutations.Permutation.length()

Return : number of integers moved by the permutation

Code #1 : length() Example




# Python code explaining
# SymPy.Permutation.length()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from sympy.combinatorics.permutations.Permutation.length() method 
  
# creating Permutation
a = Permutation([[2, 0], [3, 1]])
  
b = Permutation([1, 3, 5, 4, 2, 0])
  
  
print ("Permutation a - length form : ", a.length())
print ("Permutation b - length form : ", b.length())


Output :

Permutation a – length form : 4
Permutation b – length form : 6

Code #2 : length() Example – 2D Permutation




# Python code explaining
# SymPy.Permutation.length()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from sympy.combinatorics.permutations.Permutation.length() method 
  
# creating Permutation
a = Permutation([[2, 4, 0], 
                 [3, 1, 2],
                 [1, 5, 6]])
  
  
print ("Permutation a - length form : ", a.length())


Output :

Permutation a – length form : 7

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

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6850 POSTS0 COMMENTS