| 1234567891011121314151617181920 |
- #!/usr/bin/python3
- from colorama import Fore, Back, Style, init
- init(autoreset=True)
- logo = '''
- $$$$$$$$\ $$$$$$$$\ $$\ $$\ $$$$$$\ $$\
- \__$$ __|$$ _____|$$$$ | $$ | $$$ __$$\ $$ |
- $$ | $$ | \_$$ | $$$$$$$\ $$$$$$$\ $$$$\ $$ | $$$$$$$\ $$$$$$\
- $$ | $$$$$\ $$ | $$ _____|$$ __$$\ $$\$$\$$ |$$ _____|\_$$ _|
- $$ | $$ __| $$ | $$ / $$ | $$ |$$ \$$$$ |\$$$$$$\ $$ |
- $$ | $$ | $$ | $$ | $$ | $$ |$$ |\$$$ | \____$$\ $$ |$$\
- $$ | $$$$$$$$\ $$$$$$\ \$$$$$$$\ $$ | $$ |\$$$$$$ /$$$$$$$ | \$$$$ |
- \__| \________|\______| \_______|\__| \__| \______/ \_______/ \____/
- '''
- print(Fore.RED + logo)
- print(Fore.RED + ''.center(78, '-'))
- print(Back.BLACK + Fore.WHITE + 'Welcome'.center(78))
- print(Fore.RED + ''.center(78, '-'))
|