Is there a way to print some numbers in a dataframe in a different color? So for instance if I wanted to have the 1 in the following table in red. How can I do that?
import pandas as pd
A=pd.DataFrame({'A':[1,2], 'B':[3,4]})
I found libraries like termcolor. But there I can only print normal text in various colors.