Question: Need help with this Lab . Rock, Paper, Scissors! Write a program which let's the user play rock, paper, scissors against the computer. It should:
Need help with this Lab
Rock, Paper, Scissors! Write a program which let's the user play rock, paper, scissors against the computer. It should:
Ask for the users name, utilize in output for scoring and messages
Randomly generate the computer's choice rock "paper" or "scissors"
Ask the user to enter their choice rock "paper" or "scissors"
Display the computer's choice
Compare the choices, then determine a winner:
rock beats scissors
paper beats rock
scissors beat paper
a tie results in a doover until a winner is declared
The winner user or computer gets a point
After each round, display the total score for the user and the computer
Ask if the user wants to play again
If yes, then display another round
If no then display the total number of rounds played and the final score
Helpful hint: use numbers to represent the computer's choices. For example: rock, scissors, paper. This can make it easier to randomly generate the computer's choice.
Here's my code but it missing mainline logic and correct function design, coupled with syntax errors.
from random import
def main:
# variable
userPoint ;
computerPoint ;
roundCount ;
comp rock"paper","scissors"
# loop
whileTrue:
roundCount
# internal loop till winner
whileTrue:
# generate computer choice
compChoice randint
compCh compcompChoice
# ask user choice
uchoice strinputEnter your choice
rock beats scissors
paper beats rock
scissors beat paper'
ifuchoice "rock" and compCh "scissors":
userPoint
break;
elifuchoice "scissors" and compCh "rock":
computerPoint
break;
elifuchoice "rock" and compCh "paper":
computerPoint
break;
elifuchoice "paper" and compCh "rock":
userPoint
break;
elifuchoice "scissors" and compCh "paper":
userPoint
break;
elifuchoice "paper" and compCh "scissors":
computerPoint
break;
else:
printChoice same Try Again"
x intinputEnter to continue else
ifx :
break;
# print result
print
Total Rounds strroundCount
printUser Score struserPoint
printComputer Score strcomputerPoint
# PROGRAM EXECUTION STARTS HERE
main
Please answer asap.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
