This was made during my final week in the Data Bootcamp
This project demonstrates basic Python control flow through a user‑interactive number‑guessing game. It uses random number generation, input handling, and conditional logic to guide the user toward the correct answer with real‑time feedback.
A random number between 10 and 99 is generated at the start.
The user enters guesses one at a time.
The program compares each guess to the secret number and provides directional hints.
The loop ends only when the user guesses correctly.
A final confirmation message is displayed to celebrate success.
Generates a random number between 10 and 99
Accepts repeated user guesses
Provides directional hints (“Little higher” / “Little lower”)
Ends when the correct number is guessed
Github Link: OwenMasterson/Python_Number_Guesser