Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this part you will implement a two-player version of the card game Blackjack but with six-sided dice instead of playing cards. The function blackjack

For this part you will implement a two-player version of the card game Blackjack but with six-sided dice instead of playing cards. The function blackjack dice() will simulate the game with no interaction from the user. The game rules are as follows:

Players take turns rolling two six-sided dice, each accumulating a running total. We will see later how the rolling of dice will be simulated.

If a players total is less than 16, the player must roll the dice and add the total to his score.

If a players total is greater than or equal to 16, the player does not roll the dice.

If a players total equals exactly 21, the game ends immediately with a win for that player.

If a players total becomes greater than 21 (busting), the game ends immediately with a win for the other player.

Thus, players continue rolling dice and accumulating totals while all of the following conditions are true: Neither player has reached 21 exactly. Neither player has busted (exceeded a total of 21). At least one player still has a score of less than 16.

If the game.Intheeventofatie,thefunctionreturnsthelist[0, 0].

game ends with neither player hitting 21 or busting, then the player whose score is closest to 21 wins the

The function takes a single argument, dice, which is a list of 30 or so integers in the range 1 through 6, inclusive. Rolling of dice is simulated by the function by reading integers from this list two at a time. One way to keep track of which numbers the function should read next is to maintain an index variable (e.g., next die) that is updated as values are read out. This variable would be initialized to zero at the top of the function. As an example:

 die1 = dice[next_die] die2 = dice[next_die+1] next_die += 2 # update a players score using die1+die2 

Once a game-ending condition has been reached, the function returns a list that contains two values: first, the number of the player who won (1 or 2) and second, the score of the winning player.

A few runs of the game are given below with print statements that illustrate how the games proceed. Your solution should not contain print statements. However, while working on your solution you may find it helpful to include such print statements.

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

Database Administration The Complete Guide To Dba Practices And Procedures

Authors: Craig S. Mullins

2nd Edition

0321822943, 978-0321822949

More Books

Students also viewed these Databases questions

Question

Is noncontrolling interest share an expense? Explain.

Answered: 1 week ago