Hello β Number Guessing Game π―
My very first Python project! A simple command-line game where the computer
picks a random number between 1 and 100 and you try to guess it.
How to Run
Make sure Python is installed, then run:
How to Play
- The computer picks a secret number from 1 to 100
- Type your guess and press Enter
- You get a hint: too high, too low, or correct
- Keep guessing until you win β fewer tries = better score!
What I Learned
- Variables and loops (
while)
- Conditionals (
if / elif / else)
- User input and type conversion
- Using Pythonβs
random module