An open API service indexing awesome lists of open source software.

https://github.com/eedu7/number_guessing_game


https://github.com/eedu7/number_guessing_game

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Number Guessing Game

Sample solution for the [task-tracker](https://roadmap.sh/projects/number-guessing-game) challenge from [roadmap.sh](https://roadmap.sh/).

## How to run

Clone the repository and run the following command:

```bash
git clone https://github.com/eedu7/number_guessing_game.git
cd number_guessing_game
python main.py
```

Run the following command to build and run the project:

```bash
Welcome to the Number Guessing Game!
I'm thinking of a number between 1 and 100.
You have 5 chances to guess the correct number.

Please select the difficulty level:
1. Easy (10 chances)
2. Medium (5 chances)
3. Hard (3 chances)

$ Enter your choice: 2

Great! You have selected the Medium difficulty level.
Let's start the game!

$ Enter your guess: 50
Incorrect! The number is less than 50.

$ Enter your guess: 25
Incorrect! The number is greater than 25.

$ Enter your guess: 35
Incorrect! The number is less than 35.

$ Enter your guess: 30
Congratulations! You guessed the correct number in 4 attempts.
```