Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 879 Bytes

File metadata and controls

26 lines (22 loc) · 879 Bytes

Snake Game 🐍🎮

A classic Snake game built with Python using Pygame. Control the snake, eat food, and grow while avoiding collisions!

📌 Features

  • Smooth gameplay with increasing difficulty
  • Customizable snake speed and colors
  • Sound effects and game-over animations
  • Score tracking and high-score saving

🔗 Project Structure

/snake-game-python ├── src/ # Game source code ├── assets/ # Game assets (images, sounds) ├── README.md # Setup and game instructions ├── requirements.txt # Dependencies ├── config.json # Game settings ├── main.py # Entry point for the game

🚀 How to Run

1. Clone the repository:

git clone https://github.com/your-username/snake-game-python.git
cd snake-game-python
pip install -r requirements.txt
python main.py