Welcome to Gameprojects, a collection of simple yet super fun games built using Python 3.11 and the built-in turtle module.
These games are beginner-friendly and a great way to explore Python programming in a visual and interactive way!
A classic snake game where you control a growing snake that must avoid crashing into the walls or itself.
Controls:
- WASD keys to move the snake
Features:
- Score tracking
- Food spawns randomly
- Snake grows as you eat
- Game Over on collision
A retro-style two-player Pong game where players bounce the ball back and forth using paddles.
Controls:
- Player A:
Wto move upSto move down
- Player B:
Up Arrowto move upDown Arrowto move down
Features:
- Scoreboard for both players
- Ball resets after scoring
- Simple collision physics
A Crossy-Road–style game where you guide a turtle across the road while dodging fast-moving cars.
Controls:
Up Arrowto move the turtle forward
Features:
- Cars spawn randomly from the right and move to the left
- Levels increase as the turtle reaches the top
- Car speed increases with each level
- Turtle resets to starting position after each level
- Built using clean OOP structure
- Python 3.11
- No extra libraries needed! Just the built-in
turtlemodule
- Clone this repository
git clone https://github.com/dhruvil-1207/Game-Projects cd Game-Projects