Number_Guesser_Game
This is the implementation of the number guesser game.
Overview
This game is designed for user to guess a number within an specific range. The program generates a random number within that range so that the user should guess that number. With any incorrect guess, user loses score and receives a hint from the program untill either the user loses all of the scores or guesses the correct number.
Directory Structure
Number_Guesser_Game/
|-- src/
| |-- main.py
| |-- main.ipynb
| |-- scripts/
| | |-- tools.py
|-- README.md
How to Run
- Navigate to the main project directory(
Number_Guesser_Game
) - Add the current directory to the
PYTHONPATH
and runmain.py
:
export PYTHONPATH=$PYTHONPATH:$(pwd)
python src/main.py