python如何对excel文件的一列设置数据条?
怎样用python对excel的一列?
原本是这样
显示成这样
谢谢
再补充下,如果想如下图正负数不一样应该怎么控制呀?
回答:
from openpyxl.formatting.rule import DataBarRulefrom openpyxl.styles import colors
from openpyxl import load_workbook
sheet=...
rule = DataBarRule(start_type='percentile',
start_value=0,
end_type='percentile',
end_value=100,
color=colors.YELLOW)
sheet.conditional_formatting.add("A1:A5", rule)
以上是 python如何对excel文件的一列设置数据条? 的全部内容, 来源链接: utcz.com/p/937955.html