Sympy – Python中的stats.P()
在sympy.stats.P()方法的帮助下,我们可以通过sympy.stats.P()方法找到某个场合或假设情况的概率。
语法 : sympy.stats.P(function)
返回:返回一个假说的概率。
例子#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)
输出 :
1
例子#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