Question
Guessing Number Game (Python)- Use IF STATEMENTS User is asked to think of a secret number and the computer guesses that number. 1. Computer asks
Guessing Number Game (Python)- Use IF STATEMENTS
User is asked to think of a secret number and the computer guesses that number.
1. Computer asks user for the range.
2. User inputs the lowest and highest numbers in the range. The user thinks of a secret number in that range.
3. The computer tries to guess the secret number in as little attempts as possible.
4. For each guess from the program, the user should enter either >, <, or =. > if the secret number is greater than the guess; < if the secret number is less than the guess; or = if the secret number is equal to the guess.
5. With the above information, the computer adjusts the range and guesses again.
NOTE: Computer always guesses in the middle of the range so use the // operator to get an integer quotient (integers only). Ex: 10//2 = 5
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started