Mini Project
Practice Exercise in Python for Beginners.
Create a Guess the Number game where in the computer
One of the simplest two-player games is "Guess the number". The first
player thinks of a secret number in some known range while the second
player attempts to guess the number. After each guess, the first
player answers either "Higher", "Lower" or "Correct!" depending on
whether the secret number is higher, lower or equal to the guess. In
this project, you will build a simple interactive program in Python
where the computer will take the role of the first player while you
play as the second player. The player can choose to guess the number either between 0-100 or 0-1000 range. For 0-100 range the player get 7 attempts and for 0-1000 the player gets 10 attempts.
The UI can be command line or graphical with buttons and screen. All the best.