Is it somehow possible to have certain output appear in a different color in the IPython Notebook? For example, something along the lines of:
print(\"Hello
colorama makes it dead easy:
from colorama import Fore print(Fore.RED + "this is red")