from openpyxl import Workbook
创建excel,填写表头
wb = Workbook()
ws = self.wb.active
ws.append(['title','author','hot','time']) # 设置表头
把数据中每一项整理出来
line = [item['title'],item['author'],item['hot'],item['time']]
将数据以行的形式添加到xlsx中
ws.append(line)
保存xlsx文件
.wb.save('**.xlsx')
网友评论