Question
PYTHON: Using a loop, create and fill an array named many_d20 containing the results of separate calls to your d20 function (i.e., simulating one thousand
PYTHON:
Using a loop, create and fill an array named many_d20 containing the results of separate calls to your d20 function (i.e., simulating one thousand rolls of a twenty-sided die). Then, calculate and show the mean and standard deviation of the values in this array, such that the result of executing your cell is a two-element tuple containing the numerical values of the mean and standard deviation in the form (mean, stdev) (as the value of the final line, not as the output of a print statement).
d20 function:
import random def d20(): return random.randint(1,20)
10Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started