SciPy - Statistical Functions (scipy.stats) Basics
What is the output of this code snippet?
from scipy.stats import binom n, p = 4, 0.3 prob = binom.pmf(2, n, p) print(round(prob, 3))
