📌  相关文章
📜  如何为 pandas 数据框中的特定单元格着色 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:35.713000             🧑  作者: Mango

代码示例1
def color_negative_red(val):
    """
    Takes a scalar and returns a string with
    the css property `'color: red'` for negative
    strings, black otherwise.
    """
    color = 'red' if val < 0 else 'black'
    return 'color: %s' % color