Sympy – Python中的 stats.P()
在sympy.stats.P()
方法的帮助下,我们可以使用sympy.stats.P()
方法找到某个场合或假设情况的概率。
Syntax : sympy.stats.P(function)
Return : Return the probability of a hypothesis.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.stats.P()
方法,我们能够通过使用这种方法找到假设情况的概率。
# Import sympy, P, Dice
from sympy.stats import P, Die
situation = Die('X', 2)
# Using stats.P() method
gfg = P(situation < 5)
print(gfg)
输出 :
示例 #2:
# Import sympy, P, Dice
from sympy.stats import P, Die
situation = Die('X', 6)
# Using stats.P() method
gfg = P(situation > 3)
print(gfg)
输出 :
1/2