Open In App

Python | sympy.combinatoric.Polyhedron() method

Improve
Improve
Like Article
Like
Save
Share
Report

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.

Python3




# 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:

Python3




# 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]), (), ()) 
 

 


Last Updated : 11 Aug, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads