A classic Snake game built in Python using the turtle graphics module.
Features smooth movement, collision detection, and a persistent high-score system.
- Use arrow keys to control the snake
- Eat food to grow longer
- Avoid walls and your own body
- Game restarts automatically after a collision
- Object-oriented design (
Snake,Food,Scoreboard) - Smooth animation with
screen.tracer(0) - Random food spawning
- Color-changing snake segments
- High score saved between runs
- Clone the repository: git clone https://github.com/moby7972/moby_snakeo.git
- Run the game: python main.py
Requires Python 3.8+ (standard library only).