Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 5, 2020 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4d64a56f34efbfef899b1935338319db to your computer and use it in GitHub Desktop.
Save parzibyte/4d64a56f34efbfef899b1935338319db to your computer and use it in GitHub Desktop.
from colorama import init, Fore
# Para iniciar colorama
init(autoreset=True)
print(Fore.YELLOW + "P" + Fore.GREEN + "a" + Fore.BLUE + "r" + Fore.RED + "z" + Fore.CYAN + "i" + Fore.MAGENTA + "b" + Fore.WHITE + "y" + Fore.YELLOW + "t" + Fore.RED + "e")
# Otra forma:
print(Fore.YELLOW + "P", end="")
print(Fore.GREEN + "a", end="")
print(Fore.BLUE + "r", end="")
print(Fore.RED + "z", end="")
print(Fore.CYAN + "i", end="")
print(Fore.MAGENTA + "b", end="")
print(Fore.WHITE + "y", end="")
print(Fore.YELLOW + "t", end="")
print(Fore.RED + "e")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment