python how to make print to terminal colorful code example
Example: python print to terminal with color
from termcolor import colored
print colored('hello', 'red'), colored('world', 'green')
from termcolor import colored
print colored('hello', 'red'), colored('world', 'green')