📜  Sympy – Python中的 stats.P()

📅  最后修改于: 2022-05-13 01:55:12.315000             🧑  作者: Mango

Sympy – Python中的 stats.P()

sympy.stats.P()方法的帮助下,我们可以使用sympy.stats.P()方法找到某个场合或假设情况的概率。

示例 #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)

输出 :