Coloring Cells in Pandas

I am able to import data from an Excel file with Pandas by using: xl = read_excel('path_to_file.xls', 'Sheet1', index_col=None, na_values=['NA']) Now that I have all the data in xl as a DataFr...