Can you add an accumulator pattern on the sim_many_plays part. i need the help

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

Can you add an accumulator pattern on the sim_many_plays part. i need the help

Checkpoint A
Implement these functions from the template following the description (specification) in their docstring:
• generate_lottery_numbers()
• count_matches ()
• play_lottery_once()
sim_many_plays ()
By default, this project does not generate any interesting printed output. So, you should use one of these strategies in your work:
• Use Python Tutor to do incremental development, focusing on one function at a time in isolation
• Invent some of your own intermediate output, to get feedback while in develop mode
• Submit your work to get feedback from unit tests
Hint: you can use random.randint (a, b) to select random numbers between a and b.
Hint: The behavior of sim_many_plays will simulate a single player and their overall winnings at the end of each play. For example, if they
play 4 times and lose each time, the record of their overall winnings in each round would be [-1, -2, -3, -4].
Transcribed Image Text:Checkpoint A Implement these functions from the template following the description (specification) in their docstring: • generate_lottery_numbers() • count_matches () • play_lottery_once() sim_many_plays () By default, this project does not generate any interesting printed output. So, you should use one of these strategies in your work: • Use Python Tutor to do incremental development, focusing on one function at a time in isolation • Invent some of your own intermediate output, to get feedback while in develop mode • Submit your work to get feedback from unit tests Hint: you can use random.randint (a, b) to select random numbers between a and b. Hint: The behavior of sim_many_plays will simulate a single player and their overall winnings at the end of each play. For example, if they play 4 times and lose each time, the record of their overall winnings in each round would be [-1, -2, -3, -4].
1 def generate_lottery_numbers():
*** Generates a list of 5 random integers between 1 and 42,
inclusive, with no duplicates.
-234567891912345678928212222425252728298123458789¥12457898123科55拓望能卵卵乳酸發科5%的品
10
20
30
12 def count_matches (my_list, lottery_list):
40
50
Returns:
60
61 if
list: A list of lottery numbers
# Type your code here.
co
pass
""" Takes two lists of equal length representing the player's chosen
number list and the generated lottery list and returns the number of
between my_list and lottery_list.
matches
For example, count_matches ([10, 6, 20, 5, 7], [30, 6, 7, 40, 5])
will return 3, since both lists contain 5, 6, 7.
Parameters:
my_list (list): Your lottery numbers.
lottery list (list): A list of the winning numbers.
32 def play_lottery_once():
Returns:
int: The number of matching integers
# Type your code here.
pass
*** Uses generate_lottery_numbers () and count_matches () to return the
reward gained in playing the lottery one time. The lottery costs $1
to enter. The game award is determined according to the Table
derived from data published by the state of Georgia.
(If a player wins "one free play", we simply calculate this as
winning $1).
47 def sim_many_plays (n):
Returns:
int: The total dollar amount gained by playing the game
# Type your code here.
pass
""" Simulates a single person playing the lottery n times, to
determine their overall winnings at the end of each simulated lottery
Parameters:
n (int): The number of times the person plays the lottery.
Returns:
list: The total winnings after each of the n lotterys
pass
# Type your code here.
_name__ == "__main_":
seed = int(input('Enter a seed for the simulation: '))
random.seed (seed)
winnings = sim_many_plays(1000)
# Simulate 1000 plays by one person and plot the winnings.
plotwinsAcrossManyPlays (winnings)
Transcribed Image Text:1 def generate_lottery_numbers(): *** Generates a list of 5 random integers between 1 and 42, inclusive, with no duplicates. -234567891912345678928212222425252728298123458789¥12457898123科55拓望能卵卵乳酸發科5%的品 10 20 30 12 def count_matches (my_list, lottery_list): 40 50 Returns: 60 61 if list: A list of lottery numbers # Type your code here. co pass """ Takes two lists of equal length representing the player's chosen number list and the generated lottery list and returns the number of between my_list and lottery_list. matches For example, count_matches ([10, 6, 20, 5, 7], [30, 6, 7, 40, 5]) will return 3, since both lists contain 5, 6, 7. Parameters: my_list (list): Your lottery numbers. lottery list (list): A list of the winning numbers. 32 def play_lottery_once(): Returns: int: The number of matching integers # Type your code here. pass *** Uses generate_lottery_numbers () and count_matches () to return the reward gained in playing the lottery one time. The lottery costs $1 to enter. The game award is determined according to the Table derived from data published by the state of Georgia. (If a player wins "one free play", we simply calculate this as winning $1). 47 def sim_many_plays (n): Returns: int: The total dollar amount gained by playing the game # Type your code here. pass """ Simulates a single person playing the lottery n times, to determine their overall winnings at the end of each simulated lottery Parameters: n (int): The number of times the person plays the lottery. Returns: list: The total winnings after each of the n lotterys pass # Type your code here. _name__ == "__main_": seed = int(input('Enter a seed for the simulation: ')) random.seed (seed) winnings = sim_many_plays(1000) # Simulate 1000 plays by one person and plot the winnings. plotwinsAcrossManyPlays (winnings)
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
InputStream
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