This is a simple implementation of the classic Pong game using Python programming language and Turtle Graphics library.
- Two player mode
- Scores displayed on screen
- Ball speed increases as the game progresses
These instructions will get you a copy of the project up and running on your local machine.
To run this game, you will need to have the following installed on your computer:
- Python 3
- Turtle Graphics library
- Clone the repository or download the source code.
- Install the required libraries by running the following command in your terminal or command prompt:
pip install turtle
- Open terminal or command prompt and navigate to the directory where the source code is located.
- Run the following command to start the game:
python pong.py
The game is a two-player game. Player 1 controls a paddle using the 'w' and 's' keys while Player 2 controls a paddle using the up and down arrow keys on their respective sides of the screen. The objective of the game is to hit the ball past your opponent's paddle and score a point. The first player to score 10 points wins the game.
- Python 3
- Turtle Graphics Library