Python中的 sympy.stats.Coin()
借助sympy.stats.Coin()
方法,我们可以使用sympy.stats.Coin()
方法创建公平或不公平的硬币。一个公平的硬币有一半的概率,但我们不能判断不公平的硬币。
Syntax : sympy.stats.Coin(name, value)
Parameters :
Name – It stands for the name of the coin.
Value – By default it take Half and can change by using Rational value smaller than 1.
Return : Return the fair or unfair coin.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.stats.Coin()
方法,我们可以通过使用这个方法获得公平或不公平的硬币。
# Import Sympy and Coin
from sympy.stats import Coin, density
from sympy import Rational
# Using sympy.Coin method
X = Coin('X')
gfg = density(X).dict
print(gfg)
输出 :
{H: 1/2, T: 1/2}
示例 #2:
# Import Sympy and Coin
from sympy.stats import Coin, density
from sympy import Rational
# Using sympy.Coin method
X = Coin('X', Rational(3, 5))
gfg = density(X).dict
print(gfg)
输出 :
{H: 3/5, T: 2/5}