Question: Can you modify this code? I need it To estimate the probability of winning with only one match, for example, have your code count the
Can you modify this code? I need it To estimate the probability of winning with only one match, for example, have your code count the number of times one match is found in 10N trials and divide it by the number of trials.
import random #allows Python to pick random numbers
def lotteryNum(M): #defining the function lotteryPick=[] #Stores the lottery numbers if M=5: #if they are greater or equal to 5, lottery sample will pick through the range lotteryPick= random.sample(range(1,M+1),5) return lotteryPick
def main(): #sets a new function M=1 N=5 while M 
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
