The purpose of this assignment is to give you an opportunity to demonstrate your understanding of the use of lists, dictionaries, importing Python modules, visualizing data analysis, and user experience design. In this exercise, you will use a list to keep track of the results of a dice roll simulation and use dictionaries to help you visualize the results. Using Repl.it or an IDE (e.g. Visual Studio Code) of your choice, create a Python program that allows the user to select the number of dice, and the number of faces per die to roll for a simulation. For example, many board games have the players roll two, six-sided dies, however, some role-playing games may have the players roll more die with more faces. 1. Use a list to keep track of each roll simulation. For example, rolling two, six-sided die twenty times might produce the following Python list of results: [7, 9, 4, 5, 5, 9, 10, 7, 6, 12, 10, 5, 4, 3, 11, 9, 8, 8, 9, 6]

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

The purpose of this assignment is to give you an opportunity to demonstrate your understanding of the use of lists, dictionaries, importing Python modules, visualizing data analysis, and user experience design. In this exercise, you will use a list to keep track of the results of a dice roll simulation and use dictionaries to help you visualize the results. Using Repl.it or an IDE (e.g. Visual Studio Code) of your choice, create a Python program that allows the user to select the number of dice, and the number of faces per die to roll for a simulation. For example, many board games have the players roll two, six-sided dies, however, some role-playing games may have the players roll more die with more faces.

1. Use a list to keep track of each roll simulation. For example, rolling two, six-sided die twenty times might produce the following Python list of results:

[7, 9, 4, 5, 5, 9, 10, 7, 6, 12, 10, 5, 4, 3, 11, 9, 8, 8, 9, 6]

Update the list and print it after each roll.

2. Using Python dictionaries, keep a count of the simulated roll results, the percentage for each result, and the length of a horizontal bar graph to help you visualize the results of each simulated roll.

Note: The horizontal bar is an approximation of the percentage rounded off to a whole number. On the first simulated roll, the results would represent 100% of the outcomes. On the second simulated roll, there might be two bars, each at 50%.

3. After the simulation completes, print a table of descriptive statistics using the list of simulated roll results. Use the code from your previous assignment and the list of descriptive statistics needed.

4. Allow the user to create a new simulation with a different number of dice and faces, or exit the application.

5. The user can select to manually simulate "roll the dice" or automatically "roll the dice" a selected number of times, pausing between rolls (Hint: Consider using the sleep method from the time module to pause the program between rolls.)

6. When the user decides to quit, exit the application gracefully.

7. Make sure you provide adequate comments on your code.

 

Expert Solution
Step 1

The purpose of this assignment is to give you an opportunity to demonstrate your understanding of the use of lists, dictionaries, importing Python modules, visualizing data analysis, and user experience design. In this exercise, you will use a list to keep track of the results of a dice roll simulation and use dictionaries to help you visualize the results. Using Repl.it or an IDE (e.g. Visual Studio Code) of your choice, create a Python program that allows the user to select the number of dice, and the number of faces per die to roll for a simulation. For example, many board games have the players roll two, six-sided dies, however, some role-playing games may have the players roll more die with more faces.

1. Use a list to keep track of each roll simulation. For example, rolling two, six-sided die twenty times might produce the following Python list of results:

[7, 9, 4, 5, 5, 9, 10, 7, 6, 12, 10, 5, 4, 3, 11, 9, 8, 8, 9, 6]

Update the list and print it after each roll.

2. Using Python dictionaries, keep a count of the simulated roll results, the percentage for each result, and the length of a horizontal bar graph to help you visualize the results of each simulated roll.

Note: The horizontal bar is an approximation of the percentage rounded off to a whole number. On the first simulated roll, the results would represent 100% of the outcomes. On the second simulated roll, there might be two bars, each at 50%.

3. After the simulation completes, print a table of descriptive statistics using the list of simulated roll results. Use the code from your previous assignment and the list of descriptive statistics needed.

4. Allow the user to create a new simulation with a different number of dice and faces, or exit the application.

5. The user can select to manually simulate "roll the dice" or automatically "roll the dice" a selected number of times, pausing between rolls (Hint: Consider using the sleep method from the time module to pause the program between rolls.)

6. When the user decides to quit, exit the application gracefully.

7. Make sure you provide adequate comments on your code.

 

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Lists
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education