SciPy - Statistical Functions (scipy.stats) Basics
What will be the output type of the following code?
from scipy.stats import poisson samples = poisson.rvs(mu=3, size=5) print(type(samples))
