Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jagroop2001/guess-game
https://github.com/jagroop2001/guess-game
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jagroop2001/guess-game
- Owner: Jagroop2001
- Created: 2024-02-25T11:04:59.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-02-25T11:05:49.000Z (11 months ago)
- Last Synced: 2024-04-23T06:19:49.589Z (9 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Number Guesser Game
The **Number Guesser Game** is a python package that contains a simple and funny game, based on a few arithmetic operations this game will be able to guess the number in the player's mind.
### Install
```
$ pip install guesser_game
```### Usage
Open a Python console, import the module GuessMyNumber, create an instance of it and call its method play(). Now start to play and let this code guess the number you have in mind 😉
```
>> from guesser_game import GuessMyNumber
>>
>> my_game = GuessMyNumber()
>> my_game.play()
```