python 直接存入Excel表格
Posted 疯疯癫癫的小可爱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 直接存入Excel表格相关的知识,希望对你有一定的参考价值。
1 def write_excels(self, document): 2 outwb = openpyxl.Workbook() 3 outws = outwb.create_sheet(index=0) 4 for y, docs in enumerate(document): 5 key = [doc for doc in docs] 6 for x, ky in enumerate(key): 7 outws.cell(y + 1, x + 1).value = docs[ky] 8 outwb.save("xxx.xlsx")
docment 为list对象 大致格式如下
1 docment = [{"a":1,"b":2},{"a":3,"b":4}]
存入Excel的样式如下:
1 , 2
3, 4
以上是关于python 直接存入Excel表格的主要内容,如果未能解决你的问题,请参考以下文章