Tools and Technologies Used

  • Tkinter: It is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with tkinter is the fastest and easiest way to create GUI applications.
  • Random: Python defines a set of functions that are used to generate or manipulate random numbers through the random module.
  • PIL: Python Imaging Library (expansion of PIL) is the de facto image processing package for Python language. It incorporates lightweight image processing tools that aids in editing, creating and saving images.

Rock, Paper, Scissor game – Python Project

In this article, we will see how we can create a rock paper and scissor game using Tkinter. Rock paper scissor is a hand game usually played between two people, in which each player simultaneously forms one of the three shapes with an outstretched hand. These shapes are “rock”, “paper”, and “scissors”.

Similar Reads

Game Winner Conditions

Let there be a Player who is playing with a computer as an opponent.  Now,...

Tools and Technologies Used

Tkinter: It is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with tkinter is the fastest and easiest way to create GUI applications. Random: Python defines a set of functions that are used to generate or manipulate random numbers through the random module. PIL: Python Imaging Library (expansion of PIL) is the de facto image processing package for Python language. It incorporates lightweight image processing tools that aids in editing, creating and saving images....

GUI Implementation

Part 1: Image processing and handling...

Contact Us