Question: 3. diceAverage Write a value-returning function without parameter that simulates rolling a dice (with six numbers) for 1000 times and then calculates and returns the

3. diceAverage Write a value-returning function without parameter that simulates rolling a dice (with six numbers) for 1000 times and then calculates and returns the average of all numbers rolled. Use the randint function of the random module for rolling the dice. Call the function three times. Is the average always the same? O Challenges: Use a parameter for the number of repetitions to make your function more flexible or use a parameter for the highest number of the dice, or try both. Tips Use the randint() function from the Python random module. random. randint(a, b) Return a random integer N such that a
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
