Check for the Winner
Learn how to check for the winner of the game.
We'll cover the following...
We'll cover the following...
What have we got?
We have collected all the data required to play the game. This is our inventory of already created functions:
# Import command for the 'random' library
import random
# Function to display game instructions
def display_instructions():
print('Welcome to Rock Paper Scissors.\n')
print('The rules are simple:')
print('1. Rock beats scissors')
print('2. Scissors
...