Friday, December 12, 2025
HomeLanguagesSymPy | Permutation.is_Empty() in Python

SymPy | Permutation.is_Empty() in Python

Permutation.is_Empty() : is_Empty() is a sympy Python library function that checks whether the permutation is a set with zero elements.

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

Return : true : if empty; otherwise false

Code #1 : is_Empty() Example




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


Output :

Permutation a – is_Empty form : False
Permutation b – is_Empty form : False

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




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


Output :

Permutation a – is_Empty form : False

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

Most Popular

Dominic
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11951 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12027 POSTS0 COMMENTS
Shaida Kate Naidoo
6945 POSTS0 COMMENTS
Ted Musemwa
7198 POSTS0 COMMENTS
Thapelo Manthata
6892 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS