Python| sympy.combinatoric.Polyhedron() 方法
在sympy.combinatoric.Polyhedron()方法的帮助下,我们可以通过使用 sympy.combinatoric.Polyhedron() 方法传递其中的字符列表来获取多面体的值。
Syntax:
sympy.combinatoric.Polyhedron()
Return:
Return the value of 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)
输出:
Polyhedron((a, b, d, c, e), (), ())
示例 #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)
输出:
Polyhedron(([1, 2, 3], [4, 5, 6]), (), ())