Answered step by step
Verified Expert Solution
Link Copied!

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 6 equal sides, and each side has one of the numbers 1-6 on it. There are other kinds of dice that are not cubes, with 4,8,12, or 20 sides.
The code below simulates rolling two cube shaped dice.
import random
# random.seed(1234)
result_a = random.randint(1,6)
result_b = random.randint(1,6)
print("You rolled a", result_a, "and a", result_b, 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(1234)
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 4,8,12, or 20 sided dice.
Then, modify your code to ask the user how many sides their two dice have. Even though you couldnt build fair 7 or 13 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Secrets Of Analytical Leaders Insights From Information Insiders

Authors: Wayne Eckerson

1st Edition

1935504347, 9781935504344

More Books

Students also viewed these Databases questions