This is a classic Snake game built with Python and Tkinter. The goal is to eat as much food as possible without colliding with the walls or yourself. Each piece of food you eat increases your score and the snake's length!
- Classic snake movement mechanics.
- Random food generation.
- Collision detection (walls and snake's body).
- Score tracking displayed on the screen.
- Game Over screen.
You can customize the game by editing the snake_game.py file:
- Game Speed: Change the
SPEEDvariable for faster or slower gameplay. - Snake and Food Colors: Modify the
SNAKE_COLORandFOOD_COLORvariables. - Game Dimensions: Adjust the
GAME_WIDTHandGAME_HEIGHTvariables for a bigger or smaller game area.
