Goal: Classic Snake with scoring and growth.
Stack: Python 3.x, turtle
(standard library)
- Grid movement and food spawn
- Self/wall collision + game over
- Scoreboard with high score (saved to file)
- ⬆️⬇️⬅️➡️ to move
python main.py
What I learned
State & collision logic
Simple OOP (Snake/Food/Scoreboard classes)
Clean functions and debugging step by step