从excel中导入数据到word表格
Posted luckiness
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从excel中导入数据到word表格相关的知识,希望对你有一定的参考价值。
import pandas from docx import Document excel=pandas.read_excel(r‘F:word练习数据.xlsx‘,header=None) 文件=Document(r‘F:word练习a.docx‘) 表=文件.add_table(4,4) for 行号 in range(4): for 列号 in range(4): 表.cell(行号,列号).text=str(excel.iloc[行号,列号]) 文件.save(r‘F:word练习从excel中导入数据到表格.docx‘)
以上是关于从excel中导入数据到word表格的主要内容,如果未能解决你的问题,请参考以下文章