A simple implementation of the classic Snake Game using Python and the Turtle graphics library.
Built completely from scratch with Object-Oriented Programming principles.
- Snake movement controlled with arrow keys.
- Food that spawns randomly on the screen.
- Scoreboard to track player progress.
- Snake grows longer each time it eats food.
- Game ends when the snake hits the wall or collides with itself.
snake.py→ Snake class for movement and growth.food.py→ Food class for spawning food.scoreboard.py→ Scoreboard class for tracking the score.main.py→ Runs the game loop.