Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2. Write a program to implement a rock paper scissors game using your algorithm from HW 1. Step1: import random module Step2: Display welcome message

2. Write a program to implement a rock paper scissors game using your algorithm from HW 1.

Step1: import random module

Step2: Display welcome message and rules of the game play

Step 3: set win_count and total_count zero

Step4: Display user selection choice 1. Rock 2. Paper 3. Scissor

Step5: If user does not select from options in step 4 generate error message. Ask for re -enter until correct choice.

Step6: Computer randomly choses one choice

Step7: Comparison * If user choice = computer choice print "Tie" increment tota_count value *

If user choice = "paper" and computer choice = "scissor" print "Computer Wins" increment total_count value *

If user choice ="paper" and computer choice="rock" print "User Wins" increment win_count value and total_count value *

If user choice ="scissor" and computer choice="rock" print "Computer Wins" increment total_count value *

If user choice ="scissor" and computer choice="paper" print "User Wins" increment total_count value and win_count value *

If user choice ="rock" and computer choice="paper" print "Computer Wins" increment total_count value *

If user choice ="rock" and computer choice="scissor" print "User Wins" increment total_count value, win_count value *

Step 8: Choice for game continue or quit. If user selects continue, repeat from step 4 Otherwise print user wins against total play and end message python for language comment for each line of code

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 And Expert Systems Applications 24th International Conference Dexa 2013 Prague Czech Republic August 2013 Proceedings Part 1 Lncs 8055

Authors: Hendrik Decker ,Lenka Lhotska ,Sebastian Link ,Josef Basl ,A Min Tjoa

2013 Edition

3642402844, 978-3642402845

More Books

Students also viewed these Databases questions

Question

f. Did they change their names? For what reasons?

Answered: 1 week ago