Handles menu. Shows the menu. Get and returns a selection.
()
| 36 | print underline |
| 37 | |
| 38 | def menu(): |
| 39 | '''Handles menu. |
| 40 | |
| 41 | Shows the menu. |
| 42 | Get and returns a selection.''' |
| 43 | show_menu() |
| 44 | return get_answer() |
| 45 | |
| 46 | def show_menu(): |
| 47 | '''Displays menu. |
no test coverage detected