Hello! I am currently learning more in-depth about Python. I have some code that I have made progress on but I am unsure of how to proceed. It is a magic 8-ball program with twelve set responses that I have in the first part of the code. I want to add a while loop, a for loop, and an if statement but I am unsure how to proceed. At the end, I also want the user to be able to play again after entering their question and getting a response, while keeping track of how many times they have played and displaying the value once they are done playing. I also want the end output to have the question that the user asked, the response that was randomly selected and asterisks to surround the output so that it looks neat. What is the best way to do this? Here is my current code: import random # List of magic 8 ball responses responses = [ "Yes, absolutely!", "Without a doubt, of course, yes.", "You can count on it!", "For sure!", "Hmmm...ask me later", "I’m not sure", "I can’t tell you right now", "I’ll tell you after my nap", "No way!", "I don’t think so", "Absolutely not!", "The answer is clearly NO!" ] # Starting function to get a random response from the program def get_random_response():       return random.choice(responses) # Main function for the magic 8 ball game def magic_8_ball():       play_count = 0

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
icon
Related questions
Question

Hello! I am currently learning more in-depth about Python. I have some code that I have made progress on but I am unsure of how to proceed. It is a magic 8-ball program with twelve set responses that I have in the first part of the code. I want to add a while loop, a for loop, and an if statement but I am unsure how to proceed. At the end, I also want the user to be able to play again after entering their question and getting a response, while keeping track of how many times they have played and displaying the value once they are done playing. I also want the end output to have the question that the user asked, the response that was randomly selected and asterisks to surround the output so that it looks neat.

What is the best way to do this? Here is my current code:

import random

# List of magic 8 ball responses responses = [
"Yes, absolutely!",
"Without a doubt, of course, yes.",
"You can count on it!",
"For sure!",
"Hmmm...ask me later",
"I’m not sure",
"I can’t tell you right now",
"I’ll tell you after my nap",
"No way!",
"I don’t think so",
"Absolutely not!",
"The answer is clearly NO!"
]

# Starting function to get a random response from the program

def get_random_response():
      return random.choice(responses)

# Main function for the magic 8 ball game

def magic_8_ball():
      play_count = 0

Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

This is perfect,  thank you! I have one last question:

Is it possible to also add a 'for' loop while modifying the code so it fits the for loop along with the while loop as well? If so, can you edit and give an example of that please? Thank you!

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Random Class and its operations
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education