1) Why is my table at the end of Computer’s choices, the same as Game Player’s? Please Fix it using my code.
2) Can you add some code so when someone will write "Hello" when they put Rock Paper Scissors as the Game Enter (R)ock, (P)aper, or (S)cissors: Hello Output will say, "Choose valid input!" *USE PYTHON* ------------------------ import random def get_games(): while True: games = int(input('Enter the number of game to play - odd number 3 to 11: ')) #games %2 == 0 returns a remainder of 0 when divided by 2. this is an even number. if games < 3 or games > 11 or games % 2 ==0: print('Sorry, try again.') else: return games def getWinner(user, computer): if user == 'R' and computer == 'S': return 'Player' if user == 'S' and computer == 'P': return 'Player' if user == 'P' and computer == 'R': return 'Player' if computer == 'R' and user == 'S': return 'Computer' if computer == 'S' and user == 'P': return 'Computer' if computer == 'P' and user == 'R': return 'Computer' return 'Draw' #the moves will be defined as R, P, S for rock paper scissors. def translate(move): if move == 'R': return 'Rock' if move == 'P': return 'Paper' if move == 'S': return 'Scissors' def get_choice(): return random.choice(['Rock', 'Paper', 'Scissors']) def display(uc, cc, user_won, computer_won, draw): print('nResults for Games Played') print('{:<5}{:<10}{:<10}{:<10}'.format('Game', 'Player', 'Computer', 'Winner')) print('--------------------------------') for i in range(1, len(uc) + 1): print('{:>2} {:<10}{:<10}{:<10}'.format(i, translate(uc[i - 1]), translate(uc[i - 1]), getWinner(uc[i - 1], cc[i - 1]))) print('--------------------------------') print(' Player wins: {:>4}'.format(user_won)) print('Computer wins: {:>4}'.format(computer_won)) print(' Draws: {:>4}'.format(draw)) def main(): print('Welcome to my Rock, Paper, Scissors Game!n') games = get_games() user_won, computer_won, draw = 0, 0, 0 user_choices = [] computer_choices = [] for game in range(1, games + 1): print(f'nGame {game}') user = input('Enter (R)ock, (P)aper, or (S)cissors: ').upper() computer = get_choice() winner = getWinner(user, computer[0]) print('Computer chose:', computer) print(f'{winner} Wins') if winner == 'Player': user_won += 1 elif winner == 'Computer': computer_won += 1 else: draw += 1 user_choices.append(user) computer_choices.append(computer[0]) display(user_choices, computer_choices, user_won, computer_won, draw) main()
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Read moreEach paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Read moreThanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.
Read moreYour email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.
Read moreBy sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.
Read more