Question: Hello, I've written this code to simulate the rolling of dice. My issue is I'm not sure how to get a dictionary to store the
Hello, I've written this code to simulate the rolling of dice. My issue is I'm not sure how to get a dictionary to store the values created by the dice roll. Can anyone help me finish out this question?
Here's my code:
#Randomizes import random #Choooses a dice side on a normal 6 sided die def rollDice(): print("You rolled a...") print([random.randint(2,12)for i in range(1000000)]) #Calls the function rollDice()

Simulate the rolling of two dice, one-million times using the function rollDie(). Have your program count the number of times 2,3,4,5,6,7,8,9,10,11, and 12 are rolled and store the result in a dictionary. Estimate the probability of rolling a fair dice by dividing the number of times each value occurs, divided by one million. Include the probability of rolling a fair dice as a screen capture from the IDLE
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
