te1ch0st.py 886 B

1234567891011121314151617181920
  1. #!/usr/bin/python3
  2. from colorama import Fore, Back, Style, init
  3. init(autoreset=True)
  4. logo = '''
  5. $$$$$$$$\ $$$$$$$$\ $$\ $$\ $$$$$$\ $$\
  6. \__$$ __|$$ _____|$$$$ | $$ | $$$ __$$\ $$ |
  7. $$ | $$ | \_$$ | $$$$$$$\ $$$$$$$\ $$$$\ $$ | $$$$$$$\ $$$$$$\
  8. $$ | $$$$$\ $$ | $$ _____|$$ __$$\ $$\$$\$$ |$$ _____|\_$$ _|
  9. $$ | $$ __| $$ | $$ / $$ | $$ |$$ \$$$$ |\$$$$$$\ $$ |
  10. $$ | $$ | $$ | $$ | $$ | $$ |$$ |\$$$ | \____$$\ $$ |$$\
  11. $$ | $$$$$$$$\ $$$$$$\ \$$$$$$$\ $$ | $$ |\$$$$$$ /$$$$$$$ | \$$$$ |
  12. \__| \________|\______| \_______|\__| \__| \______/ \_______/ \____/
  13. '''
  14. print(Fore.RED + logo)
  15. print(Fore.RED + ''.center(78, '-'))
  16. print(Back.BLACK + Fore.WHITE + 'Welcome'.center(78))
  17. print(Fore.RED + ''.center(78, '-'))