Question: PYTHON PROGRAMMING (Functions and Game Design): Kindly read the question and provide your solutions accordingly. Thanks. 1 Write a program to play a high low
PYTHON PROGRAMMING (Functions and Game Design): Kindly read the question and provide your solutions accordingly. Thanks.

1 Write a program to play a "high low guessing game. Allow the player to specify a lower and upper limit for the number that your program will think' of, e.g., lower limit 1 and upper limit 100 means any number between 1 and 100, inclusive. After the program has thought of a number, allow the player to repeated try to guess the number. Ensure that the player's guess is valid. The program displays Too high" if the number guessed is higher than the actual number and Too low" if the number guessed is less than the actual number. The program continues until the player enters the correct guess. A sample session is as follows Enter your guess: 5 Too low Enter your guess: 10 Too high. Enter your guess: 6 You got it in 3 tries! tries taken to get the answer 2. After each game, the program prompts the question "Continue game?(y) . If the player enters y, the game is repeated. When the player enters n, display his lowest number of attempts in all the games played
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
