fix colors in terminal python 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')