DEV Community

Cover image for 90 Days of Code: Day 17 — Building a Number Memory Game in Python
momina raheel (Moona)
momina raheel (Moona)

Posted on

90 Days of Code: Day 17 — Building a Number Memory Game in Python

Uploading image

Continuing my coding journey, I’m excited to share my Day 17 project: an interactive Number Memory Game built in Python, perfect for learners to push their memory and coding skills.

In this project, the game displays a random number sequence for a few seconds. The player must type it back correctly to continue. Each successful round makes the sequence longer and more challenging.

This is a hands-on way to practice:

  • random module for number generation
  • time.sleep for pacing
  • Loops and conditionals for game logic
  • Clearing the screen to hide the sequence

The code is fully commented for clarity — you can see what each part does and even modify it to improve or extend functionality.

Check it out, star it, and let me know your thoughts or feature ideas:
https://github.com/shadowMomina/Day-17-Number-Memory-Game.git

Top comments (0)