Skip to content

Instantly share code, notes, and snippets.

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