保存文件到excel文件中

2019-10-09  本文已影响0人  wang_souris

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')

上一篇下一篇

猜你喜欢

热点阅读