Question: Task Write a program called test4py that plays the following card game: 1. The game starts with certain initial amount of dollars. 2. At each
Task
Write a program called test4py that plays the following card game:
1. The game starts with certain initial amount of dollars.
2. At each round of the game, instead of flipping a coin, the player shuffles a deck
and draws 6 cards. If the drawn hand contains at least one ace, the player gains
a dollar, otherwise they lose a dollar.
3. The game runs until the player either runs out of money or doubles their initial
amount.
To test the game, given the initial amount, run it 1000 times to determine how many
rounds does the game last on average
Provide a user with an interface to enter the initial bankroll. For each entered number,
the program should respond with the average duration of the game for that initial
bankroll.
teacher give me this piece of code:
import random faceValues = ['ace', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'jack', 'queen', 'king'] suits = ['clubs', 'diamonds', 'hearts', 'spades'] def shuffledDeck(): deck = [] for faceValue in faceValues: for suit in suits: deck.append(faceValue + ' of ' + suit) random.shuffle(deck) return deck def faceValueOf(card): return card.split()[0] def suitOf(card): return card.split()[2] Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
