Question: 2. Write a program to implement a rock paper scissors game using your algorithm from HW 1. Please do the following: Python 3.7.2 for language
2. Write a program to implement a rock paper scissors game using your algorithm from HW 1.


Please do the following:
Python 3.7.2 for language
use code block
comment for each line of code
Step1: import random module Step2: Display welcome message and rules of the game play Step 3: set wincount and tetal caunt zero Ste4: 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 chose's 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.caunt value and totalcouat 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.couat 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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
