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
There is the colored library (pip install colored), which you can use to modify a string to get color codes to modify how it is printed. Example use:
pip install colored
import colored print(colored.bg("white") + colored.fg("red") + "Hello world!")