This is a simple Snake game implemented in Python using the Pygame library.
- Classic Snake gameplay.
- 🎵 Background music can be customized by changing the songs in the 'music' folder.
- 🌈 Colors can be easily modified by declaring them as variables in the code.
You can personalize the background music by replacing the songs located in the 'music' folder with your preferred audio files.
Colors in the game can be modified by declaring them as variables in the code. For example:
Black = (0, 0, 0)
# Add more color variables as needed
Feel free to experiment with different color combinations to give the game your unique touch.
- Run the Python script (
main.py
) in a Python environment with the Pygame library installed. - Control the snake using the arrow keys: ⬆️ Up, ⬇️ Down, ⬅️ Left, ➡️ Right.
- 🍏 Collect the coins to grow the snake and increase your score.
- 🚫 Avoid collisions with the snake's own body and the game borders.
- Have fun playing the Snake Game! 🎉
- Python 3.x
- Pygame library
pip install pygame
This Snake Game project is licensed under the Apache License 2.0.
Enjoy the game! 🕹️