MCPcopy Create free account
hub / github.com/ndleah/python-mini-project / ascii_maker

Function ascii_maker

Fancy_Text_Generator/main.py:5–13  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3
4# Banner maker
5def 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
16def ending():

Callers 1

run_loopFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected