The geometric distribution is a useful tool for modeling time to event data. A successful street vendor says that on average 1 out of every 10 people who walk by on the street stop to buy a taco. 1. Represent these data with a geometric distribution 2. What is the probability that the vendor has to wait until 20 people walk buy before someone buys a taco? 1 import scipy.stats as stats def geometric_distribution (p,k): 4 5 INPUT: probability of success and trials 6 OUTPUT: determined probability