Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 5, 2020 16:06
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/15b5b043a59d1c2475ecbcc8d416ca3c to your computer and use it in GitHub Desktop.
Save parzibyte/15b5b043a59d1c2475ecbcc8d416ca3c to your computer and use it in GitHub Desktop.
from colorama import init, Fore, Style
# 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")
print(Style.RESET_ALL, end="")
print("Texto color original de nuevo")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment