qq_37934574 2019-08-23 10:51 采纳率: 20%
浏览 581
已采纳

求大神指点,python脚本文件,设置EXCEL单元格背景颜色,并没有报错,但是为什么不变色

#coding :utf-8
import time
import xlsxwriter
import xlrd

class Loginfo(object):
def init(self,path='',mode = 'w'):
fname = path + time.strftime('%Y-%m-%d', time.gmtime())
self.log = open(path + fname + '.txt', mode)
def log_write(self,msg):
self.log.write(msg)
def log_close(self):
self.log.close()

def log_init(self, sheetname, *title):
    pass

class xlloginfo(object):
def init(self, path=''):
fname = path + time.strftime('%Y-%m-%d', time.gmtime())
self.row = 0
self.xl = xlsxwriter.Workbook(path+fname+'.xls')
self.style = self.xl.add_format({'bg_color':'red'})
def xl_write(self, *args):
col = 0
style = ''
if 'Error' in args:
style = self.style
for val in args:
self.sheet.write_string(self.row, col, val)
col += 1
self.row+=1
def log_init(self, sheetname, *title):
self.sheet = self.xl.add_worksheet(sheetname)
self.sheet.set_column('A:E', 30)
self.xl_write(*title)

def log_write(self, *args):
    self.xl_write(*args)
def log_close(self):
    self.xl.close()

if name == '__main__':
'''
log = Loginfo()
log.log_write('test Loginfo 测试')
log.log_close()
'''

xinfo = xlloginfo()
xinfo.log_init('test', 'uname', 'pwd', 'result', 'info')
xinfo.log_write('123', '123', 'Error', 'error')
xinfo.xl.close()
  • 写回答

1条回答 默认 最新

  • FeiRouBing 2019-08-23 13:27
    关注

    style只定义没使用当然没变色了。

    self.sheet.write_string(self.row, col, val)
    

    改成

    self.sheet.write_string(self.row, col, val, style) 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题