Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

hello, i have finished most of the code required (PYTHON)and just need some adjustments, i would appreciate it if you worked on the given code

hello, i have finished most of the code required (PYTHON)and just need some adjustments, i would appreciate it if you worked on the given code and fixed it. i have attached the question in the bottom as well so you know what im working on. the program just generates an infitie loop and i dont know how to fix that. please help!
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
Overview In this project students will simulate a simplified version of the game Blackjack. Students will implement random card drawing, calculation, state tracking, and console input systems. The project is designed to be a playful yet practical opportunity to practice data types, console I/O, control structures, and modules. Rules of the Road Forewarming: this specification does NOT follow the rules of casino Blackjack. Don't drop out of your studies and move to Vegas just because you can beat your own randomised AI! A typical game will play out as follows: The player will be dealt one card at the start of the game (where a game is one round of play). The player, based on the value of their cards, can either ask for another card (a hit) or choose to hold (stand). The dealer will then begin their turn and try to beat the player's hand. The player is competing against the dealer, who has their own hand. Whomever is closer to 21 at the end of the game (as long as they don't exceed 21) wins the game. 1. Player's tum: Player tries to reach or come close to 21 without going over (as 21 is the highest hand). 2. Dealer's tum: Dealer tries to beat exeeed the player's hand without going over 21. 3. Determine the winner at the end of the game and increment the win count. 4. Repeat! You will need a while loop in your program. The loop will allow you to play successive games without restarting the program each time; it will also allow you to keep a win count over multiple games. Here is the basic syntax of a while loop: while boolean_expression: Statements If the boolean expression evaluates to true, the loop continues. If/when it ever evaluates to false, then the loop terminates (we skip over the loop block) and continue with the program. Here is an example of a while loop: x=0whilex

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

Databases In Networked Information Systems 6th International Workshop Dnis 2010 Aizu Wakamatsu Japan March 2010 Proceedings Lncs 5999

Authors: Shinji Kikuchi ,Shelly Sachdeva ,Subhash Bhalla

2010th Edition

3642120377, 978-3642120374

More Books

Students also viewed these Databases questions

Question

e. What difficulties did they encounter?

Answered: 1 week ago