📜  Python| sympy.combinatoric.Polyhedron() 方法

📅  最后修改于: 2022-05-13 01:54:54.368000             🧑  作者: Mango

Python| sympy.combinatoric.Polyhedron() 方法

sympy.combinatoric.Polyhedron()方法的帮助下,我们可以通过使用 sympy.combinatoric.Polyhedron() 方法传递其中的字符列表来获取多面体的值。

示例 #1:

在这个例子中,我们可以看到通过使用 sympy.combinatoric.Polyhedron() 方法,我们可以通过传递 list 作为参数来获取多面体的值。

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)


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)


输出:

示例 #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)

输出: