借助sympy.stats.Die()
方法,我们可以通过使用来获得具有参数给定面数并在参数本身中定义名称的透明模具sympy.stats.Die()
方法。
用法:sympy.stats.Die(name, faces)
返回:Return a fair die having ‘n’ faces.
范例1:
在这个例子中,我们可以通过使用sympy.stats.Die()
方法,通过使用此方法,我们可以获得具有‘n’个面作为参数传递的透明模具。
# Import sympy and Die
from sympy.stats import Die, density
X = Die('X', 12)
# Using sympy.Die() method
gfg = density(X).dict
print(gfg)
输出:
{1:1/12, 2:1/12, 3:1/12, 4:1/12, 5:1/12, 6:1/12, 7:1/12, 8:1/12, 9:1/12, 10:1/12, 11:1/12, 12:1/12}
范例2:
# Import sympy and Die
from sympy.stats import Die, density
X = Die('X', 3)
# Using sympy.Die() method
gfg = density(X).dict
print(gfg)
输出:
{1:1/3, 2:1/3, 3:1/3}
相关用法
- Python Wand function()用法及代码示例
- Python Sorted()用法及代码示例
- Python Numbers choice()用法及代码示例
- Python Tkinter askopenfile()用法及代码示例
- Python ord()用法及代码示例
- Python sum()用法及代码示例
- Python round()用法及代码示例
- Python id()用法及代码示例
- Python vars()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 sympy.stats.Die() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。