This repository contains a classic Snake game implemented in Python using the Turtle module.
The Snake game is a simple game where the player controls a snake that moves around the screen, eating food to grow longer. The game ends if the snake runs into itself or the edges of the screen. The goal is to make the snake as long as possible.
- Classic Snake gameplay
- Increasing difficulty as the snake grows
- Simple and intuitive controls using the keyboard
- Clone the repository:
git clone https://github.com/jpvgoes/snake-game.git
- Navigate to the project directory:
cd snake-game
- Ensure you have Python installed. This game is built using Python 3.
- Install the Turtle module if it's not already installed:
pip install PythonTurtle
To start the game, run the snake_game.py
file:
python snake_game.py