条件格式化1

血红的双手。 提交于 2020-10-02 09:55:33
import  pandas
excel=pandas.read_excel(r'E:\pandas练习\成绩单.xlsx')
def low_score_red(s):
    color="red" if s<60 else  "black"
    return "color:{}".format(color)
a=excel.style.applymap(low_score_red,subset=['test_1','test_2','test_3'])
def  highest_score_green(col):
    return ["background-color:yellow;color:green" if s==col.max() else "background-color:green;color:brown"  for  s in col]

a.apply(highest_score_green,subset=['test_1','test_2','test_3'])

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!