def highlight_cell(row):
background = []
for cell in row:
color = 'background-color: #000000'
if '##' in cell:
color = 'background-color: #0000FF'
background.append(color)
return background
df.style.apply(highlight_cell, axis=1)
但是这个df转移到的excel似乎没有任何反应。 但这似乎不起作用