1) Why is my table at the end of Computer’s choices, the same as Game Player’s? Please Fix it…

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()

Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

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.

Money-back guarantee

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 more

Zero-plagiarism guarantee

Each 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 more

Free-revision policy

Thanks 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 more

Privacy policy

Your 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 more

Fair-cooperation guarantee

By 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
error: Content is protected !!