()
| 3 | |
| 4 | # Banner maker |
| 5 | def ascii_maker(): |
| 6 | print('-' * 70) |
| 7 | ascii_banner = pyfiglet.figlet_format("A C I I banner").upper() |
| 8 | print(ascii_banner) |
| 9 | print('-' * 70) |
| 10 | |
| 11 | text = input("\nEnter Your Text: ") |
| 12 | banner = pyfiglet.figlet_format(f"{text}").upper() |
| 13 | print(banner) |
| 14 | |
| 15 | # Ending message |
| 16 | def ending(): |