Open In App

Python | sympy.combinatoric.Polyhedron() method

With the help of sympy.combinatoric.Polyhedron() method, we can get the value of polyhedron by passing list of characters in it by using sympy.combinatoric.Polyhedron() method.

Syntax: 
sympy.combinatoric.Polyhedron()
Return: 
Return the value of polyhedron. 
 



Example #1: 

In this example, we can see that by using sympy.combinatoric.Polyhedron() method, we are able to get the value of polyhedron by passing list as a parameter.






# import sympy and Polyhedron
from sympy.combinatorics import Polyhedron
from sympy.abc import a, b, c, d, e
    
# Using sympy.combinatorics.Polyhedron method
gfg = Polyhedron(list('abdce'))
  
print(gfg)

Output:

Polyhedron((a, b, d, c, e), (), ()) 
 

Example #2:




# import sympy and Polyhedron
from sympy.combinatorics import Polyhedron
    
# Using sympy.combinatorics.Polyhedron method
gfg = Polyhedron([[1, 2, 3], [4, 5, 6]])
  
print(gfg)

Output:

Polyhedron(([1, 2, 3], [4, 5, 6]), (), ()) 
 

 

Article Tags :