Displays headings. Prints a heading. Underlines the heading.
(heading)
| 25 | raise bug |
| 26 | |
| 27 | def show_heading(heading): |
| 28 | '''Displays headings. |
| 29 | |
| 30 | Prints a heading. |
| 31 | Underlines the heading.''' |
| 32 | print heading |
| 33 | underline = '' |
| 34 | for line in range(len(heading)): |
| 35 | underline += '-' |
| 36 | print underline |
| 37 | |
| 38 | def menu(): |
| 39 | '''Handles menu. |
no test coverage detected