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
In the Jupiter notebook, we can use a color marker to print the output in different colors There are three ways that we can use a color marker.
let's see how to print a yellow color in a notebook.
print('\033[93m output')print('\033[93m' 'output')print('\033[93m' + 'output')Some of the colors are :
you can change the last number and get other colors as well.