()
| 39 | |
| 40 | |
| 41 | def magic_8_ball(): |
| 42 | question = inquirer.text(message="What's your question?").execute() |
| 43 | answer = random.choice(responses) |
| 44 | print(Fore.BLUE + Style.BRIGHT + answer + Style.RESET_ALL) |
| 45 | try_again() |
| 46 | |
| 47 | |
| 48 | def try_again(): |
no test coverage detected