| 1234567891011121314151617181920212223 |
- #!/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, '-'))
|