This is a simple project I built while learning Python, based on an exercise from Codecademy.
It simulates the classic "Magic 8-Ball" toy that gives random yes/no/maybe answers to any question.
- Stores the name of the person asking the question.
- Defines a yes/no question.
- Generates a random response from a list of 9 possible answers.
- Prints everything in a single, well-formatted line.
- Python 3
- Built-in
randommodule
Completed
Part of my beginner Python training projects