Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 5, 2020 16:01
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/24f8cc4101153a0498097bc22df517b4 to your computer and use it in GitHub Desktop.
Save parzibyte/24f8cc4101153a0498097bc22df517b4 to your computer and use it in GitHub Desktop.
from colorama import init, Fore
# Para iniciar colorama
init()
print("Texto color original")
print(Fore.YELLOW + "Texto color amarillo")
print(Fore.GREEN + "Texto color verde")
print(Fore.RED + "Texto color rojo")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment