This project focuses on developing a Python-based Number Guessing Game.
The game generates a random number between 1 and 100, and the user has to guess the correct number within the given attempts.
-
Generate a random number
-
Accept user input
-
Compare the guessed number
-
Display "Too High" or "Too Low" hints
-
Allow multiple attempts
-
End the game after winning or exhausting all attempts
-
Python
-
Random Module
-
While Loop
-
If-Else Statements
-
User Input
This project helped improve my understanding of Python programming, loops, conditional statements, and the Random module while building a simple interactive game.