I use Pandas for data analysis and want to produce a spreadsheet where cells have text with different color or with different font weight, for example: "this is bold and important, this is not". In a terminal, I can add these control characters before text and change the color and weight of the text after:
BOLD = "\033[;1m"
BLUE = "\033[1;34m"
CYAN = "\033[1;36m"
UNDERLINE = '\033[4m'
and go back to normal with:
RESET = "\033[0;0m"
I know I can color cells and control the style of a whole cell, but I would like to control font inside a cell.
Is that possible?