printing bold, colored, etc., text in ipython qtconsole

In Jupyter Notebooks, one clean way of solving this problem is using markdown: from IPython.display import Markdown, display def printmd(string): display(Markdown(string)) And then do something like: printmd(“**bold text**”) Of course, this is great for bold, italics, etc., but markdown itself does not implement color. However, you can place html in your markdown, and get something … Read more