Question: In Python please. For this part you will implement a two-player version of the card game Blackjack but with six-sided dice instead of playing cards.

In Python please. For this part you will implement a two-player versionof the card game Blackjack but with six-sided dice instead of playingIn Python please.

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 player's total is less than 16, the player must roll the dice and add the total to his score If a player's total is greater than or equal to 16, the player does not roll the dice. If a player's total equals exactly 21, the game ends immediately with a win for that player If a player's 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: o Neither player has reached 21 exactly. o Neither player has busted (exceeded a total of 21) o At least one player still has a score of less than 1 If the game ends with neither player hitting 21 or busting, then the player whose score is closest to 21 wins the game. In the event of a tie, the function returns the list [0, 0] 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 traclk 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] next die += 2

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!