Thursday, March 12, 2026
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

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS