Computer Science, asked by nandulasashank, 9 months ago

The average number of bouquets sold by a flower shop is 10 per day. What is the probability that exactly 15 bouquets will be sold tomorrow?
Display the probability only(in decimal

Answers

Answered by badrirayidi
21

Answer:

from scipy import stats

probability=stats.poisson.pmf(15,10)

print(probability)

Explanation:

Similar questions