SciPy - Statistical Functions (scipy.stats) Basics
Identify the error in this code snippet:
from scipy.stats import binom n, p = 5, 0.4 prob = binom.pmf(n, 3, p) print(prob)
