Skip to content

Instantly share code, notes, and snippets.

@01x01
Created February 2, 2019 07:08
Show Gist options
  • Save 01x01/bb197e1c511a6605ed8d9c52017bfa24 to your computer and use it in GitHub Desktop.
Save 01x01/bb197e1c511a6605ed8d9c52017bfa24 to your computer and use it in GitHub Desktop.
from colorama import init
from colorama import Fore, Back, Style
init()
def sprint(msg):
print(Fore.GREEN + msg + Style.RESET_ALL)
Style.RESET_ALL
def fprint(msg):
print(Fore.RED + msg + Style.RESET_ALL)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment