TRY THIS QUICK !!!
Just a cool way of working with colors in python
import colorama
from colorama import *
import random
import pyfiglet
BLUE = Fore.BLUE
RED = Fore.RED
GREEN = Fore.GREEN
YELLOW = Fore.YELLOW
RESET = Fore.RESET
CYAN = Fore.CYAN
colors = (BLUE , RED , GREEN , YELLOW , RESET , CYAN)
INFO = GREEN+"[" + YELLOW +"i"+ GREEN + "]" + RESET
SUCCESS = YELLOW+"[" + GREEN +"$$"+ YELLOW + "]" + RESET
FAIL = CYAN+"[" + RED +"!!"+ CYAN + "]" + RESET
You can try below line if you like
Banner = pyfiglet.figlet("ANONYMOUS", font="slant")
print(random.choice(colors)+Banner)
print(INFO + " THIS SCRIPT WAS CODED BY ANONYMOUS DATA ANALYST! " + RESET)