The Snake Game is a timeless classic where the player controls a snake to eat food that randomly appears on the screen. Each piece of food eaten increases the snake's length and the player's score. The game ends if the snake collides with the screen borders or its own body.
- Classic Gameplay: Traditional snake mechanics with smooth controls.
- Dynamic Scoring: Real-time score and high score tracking.
- Pause/ Resume and Exit: Ability to pause, resume and exit the game.
- Simple Interface: Clean and minimalistic design.
- Python 3.x installed on your system.
- Turtle graphics library (comes standard with Python).
- W or Up Key: Move Up
- S or Down Key: Move Down
- A or Left Key: Move Left
- D or Right Key: Move Right
- Space: Pause/Resume Game
- Escape: Exit Game
- Objective: Control the snake to eat food and grow longer. Avoid collisions with the screen borders and the snake's own body.
- Scoring: Each piece of food increases the score by 10 points. The game keeps track of the highest score achieved during the session.
- Game Over: The game ends when the snake collides with the border or itself. The snake resets, and the current score resets to zero.
This project is licensed under the MIT License. See the LICENSE file for details.