raviprakashdev / simplePythonProgram

21 stars 55 forks source link

Added a python program where you can play a guessing game, #49

Closed hasna-akbarali closed 4 years ago

hasna-akbarali commented 4 years ago

You just have to guess the number the computer has randomly chosen using randint() , you have only 5 tries (limited using a variable count) and the number lies in between 1 and 50. It gives an idea of how close you are to guessing the number by saying "you have guessed too small" or "you have guessed too high", this is done by using simple if elif statements.

hasna-akbarali commented 4 years ago

This is a simple guessing game create by using simple python programming language.