For the first part of you will write a program similar to the classic Guess My Number game. To start out, we'll play our game like Lotto (without giving money to winners)- the player has one chance to answer with the correct number, and we'll provide some feedback on where they landed
For the first part of you will write a program similar to the classic Guess My Number game. To start out, we'll play our game like Lotto (without giving money to winners)- the player has one chance to answer with the correct number, and we'll provide some feedback on where they landed
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Please explain the steps

Transcribed Image Text:Guess My Number!
For the first part of you will write a program similar to the classic Guess My Number game. To start out,
we'll play our game like Lotto (without giving money to winners) – the player has one chance to answer
with the correct number, and we'll provide some feedback on where they landed
Task Outline: Here is the general outline of what you need to do:
1. Generate and store a random number from 1 to 5 for you or your user to try to guess. You'll
need to use the import statement to import the random package and call the randint()
Here's an example: number = random.randint(1,5)
2. Ask the player their name and print an inviting message to get the game started
3. Ask the player for their guess. If the player's guess was less than the random number chosen
(i.e. they guessed too low), print a message telling them they guessed too low. If the player's
number was greater than the random number you generated (i.e. they guessed too high), print
a message telling them they guessed too high. If the player guesses the random number, print
a winning
Expert Solution

Step 1 Generating a random number between 1 to 5
First we import random module using
import random
Now we use the randit function of random module ( Thos function gives us a random integer between the values passed in it)
random.randint
Step by step
Solved in 4 steps

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education