突出显示数据框中包含##的单元格

时间:2020-07-14 10:50:39

标签: python python-3.x python-2.7 dataframe

以下是数据框: 我想为datframe中包含##的列上色。 enter image description here

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似乎没有任何反应。 但这似乎不起作用

0 个答案:

没有答案