Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Create a Python program for a number guessing game. Here are the requirements: a. Your program generates a random number between -100 and 100

1. Create a Python program for a number guessing game.

Here are the requirements:

a. Your program generates a random number between -100 and 100 and keeps asking the user to guess the number until the user guesses it correctly. Your random number generator should be implemented as a Python function which takes min and max as input parameters and returns a random number between those values including the min and the max.

b. If the user guesses a number that is lower or higher than the number to be guessed then indicate that information to the user as a low guess or a high guess so that the user can get to the correct guess quicker.

c. The program keeps track on number of guesses taken by the user to get to the correct guess. This is users score.

d. Use a parameter for number of allowed guesses (set it some value, say 7) and your program congratulates users if user guesses the number correctly in number of guesses less than the number of allowed guesses. The program doesnt allow user to continue beyond the number of allowed guesses and tells user that the number wasnt guessed correctly in allowed attempts. You can print the number of allowed guesses at the beginning of the game.

e. Write out user name and number of guesses taken to a game report file. Each attempt at the game will add a new line to the report file.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing

Authors: David M. Kroenke

12th Edition International Edition

1292023422, 978-1292023427

More Books

Students also viewed these Databases questions

Question

What are Decision Trees?

Answered: 1 week ago

Question

What is meant by the Term Glass Ceiling?

Answered: 1 week ago