Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Most dice are cubes, which means they have 6 equal sides, and each side has one of the numbers 1 - 6 on it .
Most dice are cubes, which means they have equal sides, and each side has one of the numbers on it There are other kinds of dice that are not cubes, with or sides.
The code below simulates rolling two cube shaped dice.
import random
# random.seed
resulta random.randint
resultb random.randint
printYou rolled a resulta "and a resultb end
print
TRY IT
Try It several times in a row to see the different dice rolls.
Then, uncomment the line that says random.seed
and run it several times. What happened? Try experimenting with different values for the random.seed function and run several times to see what happens.
Setting the random seed to a fixed value allows you to get predictable results every time, but it does not allow for a very interesting dice game. Comment the line back out so you have a random roll of the dice again.
Try modifying your code to use or sided dice.
Then, modify your code to ask the user how many sides their two dice have. Even though you couldnt build fair or sided dice physically, with digital dice you could use them.
You need to ask for how many sides each dice has. This means two inputs for two dice!
TRY IT
Once you are confident your dice game is working properly, check it for a grade. Before you check it you have to remember to uncomment the line that sets the random seed so that the autograder will know which rolls should come up
Step 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