Skip to content
Learnearn.uk » Python Unit Home » Rock Paper Scissors Game Easy Python Tutorial

Rock Paper Scissors Game Easy Python Tutorial

Rock, Paper, Scissors Game Tutorial

The aim of this walk through is to show you how you can create a simple rock,paper,scissors game. In this game the user and computer each pick from either rock, paper or scissors and depending on their choice either the computer or the user wins (or its a draw!).

  • Rock beats scissors
  • Scissors beats paper
  • Paper beats rock
  • The same choice is a draw.

The game will be played over 5 rounds and at the winner will be the one who has won the most rounds.

Python rock paper scissors game

Rock,Scissor Paper

Video Tutorial

Can’t access Youtube? Click here for the Google Drive Version

Here is the full video tutorial for you to follow. Make sure you watch and listen to the video, don’t just copy the code, as I explain as I go along why I have chosen to use each different technique.

Can’t access YouTube? Click here for the Google Drive Version

Full Code Listing

Here is the full code listing for if you need help with debugging. Remember to watch and listen to the video, don’t just copy the code, you will learn far more!