. Write a function that simulates the rolling of 5 dice at a time. Calculate and print the highest possible score of the five dice using the lower section of the game "Yatzee".
. Write a function that simulates the rolling of 5 dice at a time. Calculate and print the highest possible score of the five dice using the lower section of the game "Yatzee".
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
I need help on this python assignment. It is asking to code the game of yahtzee. The assignment gives this link https://en.wikipedia.org/wiki/Yahtzee and says to use the lower section scoring. Thank you in advance any assisstance is welcomed. Also the first image is the actual assignment and the second image is some helpful hints the instructor gave us.
![11. In this problem you need to simulate part of a Yahtzee game. This turns out to be more complicated than I expected. To solve it, I created a
dictionary (I called it "count") where the key is the number on the die and the value is the number of times that number is rolled. So, if you roll a
Yahtzee of 3's, your dictionary would have the single entry count[3] = 5. You can get a list of the keys by using keys = list(count.keys()) and a list of the
values using values = list(count.values()). With these, you can use the Wikipedia entry to logic things out. If there is a 5 in values, for instance, you
have a Yahtzee; a 4 means you have 4 of a kind; a 3 is three of a kind if there is no 2, otherwise, it is a Full House. To get the straights, use the
information in the boxes on the Wikipedia entry - if len(values) == 5, you have five different die values, but it's only a large straight if you're missing
either a 1 or a 6. The small straight is a bit more complicated but similar. After you find all these, calculate the chance score as the sum of the rolls -
then return either a score you've already calculated or the chance value, whichever is larger. Wheh!](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F9beb5ab6-4fd3-4e9c-8c6c-c4109f4c868c%2F17ce2524-6952-44be-828c-5e50288c7540%2Fzr2jtxj_processed.png&w=3840&q=75)
Transcribed Image Text:11. In this problem you need to simulate part of a Yahtzee game. This turns out to be more complicated than I expected. To solve it, I created a
dictionary (I called it "count") where the key is the number on the die and the value is the number of times that number is rolled. So, if you roll a
Yahtzee of 3's, your dictionary would have the single entry count[3] = 5. You can get a list of the keys by using keys = list(count.keys()) and a list of the
values using values = list(count.values()). With these, you can use the Wikipedia entry to logic things out. If there is a 5 in values, for instance, you
have a Yahtzee; a 4 means you have 4 of a kind; a 3 is three of a kind if there is no 2, otherwise, it is a Full House. To get the straights, use the
information in the boxes on the Wikipedia entry - if len(values) == 5, you have five different die values, but it's only a large straight if you're missing
either a 1 or a 6. The small straight is a bit more complicated but similar. After you find all these, calculate the chance score as the sum of the rolls -
then return either a score you've already calculated or the chance value, whichever is larger. Wheh!

Transcribed Image Text:11. Write a function that simulates the rolling of 5 dice at a time. Calculate and print the highest possible score of the five dice using the lower section of the
game "Yatzee".
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images

Recommended textbooks for you

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education

Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY