Pong with Python

This page will guide you through making a basic pong game using Python. The end result will look something like this.

Ping pong game

Table of contents

  1. Step 1 - Drawing the canvas, ball, and paddles
  2. Step 2 - Creating classes to represent objects
  3. Step 3 - Movement
  4. Step 4 - Making the ball bounce off the paddles
  5. Step 5 - Finishing touches