Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

python program using Task decomposition method and report total bets and total amount won Practice random number generation, loop, and decision structures. A slot machine

image text in transcribed

image text in transcribed

python program using Task decomposition method and report total bets and total amount won

Practice random number generation, loop, and decision structures. A slot machine is a gambling device that the user inserts money into and then pulls a lever (or presses a button). The slot machine then displays a set of random images. If two or more of the images match e user wins an amount of money that the slot machine dispenses back to the user. Create a Python program that simulates a slot machine. When the program runs, it should do the following: Asks the user to enter the amount of money he or she wants to enter into the slot machine. . The slot machine will draw three images. Instead of displaying images, the program will randomly select a word from the following list Cherries, Oranges, Plums, Bells, Melons, Bars To select a word, the program can generate a random number in the range of 0 through 5. the number is 0, the selected word is Cherries; if the number is 1, the selected word is Oranges; and so forth. The program should randomly select a word from this list three times and display all three of the words. If none of the randomly selected words match, the program will inform the user that he or she ha s won $0. If two of the words match, the program will inform the user that he or she has won two times the amount entered. If all three words match, the program will inform the user that he or she has won three times the amount entered. The program will ask whether the user wants to play again. If so, the above steps are repeated. If not, the program displays the total amount of money entered into the slot machine and the total amount won. An example of user interaction session is illustrated below, with user inputs being underlined: Welcome to the Slot Machine Simulation Enter the amount you would like to bet: $10 - Cherries -Bells -Melons- Sorry, None match... amount won = 0.0 Would you like to play again? Enter y for yes or n for no: y Enter the amount you would like to bet: $20 -Bells-Plums-Plums - Great! Two match. That doubles your bet! amount won = 40.0 Would you like to play again

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

Current Trends In Database Technology Edbt 2006 Edbt 2006 Workshops Phd Datax Iidb Iiha Icsnw Qlqp Pim Parma And Reactivity On The Web Munich Germany March 2006 Revised Selected Papers Lncs 4254

Authors: Torsten Grust ,Hagen Hopfner ,Arantza Illarramendi ,Stefan Jablonski ,Marco Mesiti ,Sascha Muller ,Paula-Lavinia Patranjan ,Kai-Uwe Sattler ,Myra Spiliopoulou ,Jef Wijsen

2006th Edition

3540467882, 978-3540467885

More Books

Students also viewed these Databases questions

Question

What are some internal indicators of impairment?

Answered: 1 week ago

Question

Assessment of skills and interests.

Answered: 1 week ago

Question

Psychological, financial, and career counseling.

Answered: 1 week ago