当然Python中只能写入docx格式的word,所以切记修改了先哦。
import docx
import os
import xlwt
from docx import Document #导入库
rootdir ='你word所在目录'list = os.listdir(rootdir) #列出文件夹下所有的目录与文件
f = xlwt.Workbook()#创建工作簿
sheet1 = f.add_sheet(u'sheet1',cell_overwrite_ok=True) #创建sheet
for i in range(0,len(list)):
path = os.path.join(rootdir,list[i])
if os.path.isfile(path): #如果是文件夹就继续打开
document = Document(path) #读入文件
tables = document.tables #获取文件中的表格集
table = tables[0]#获取文件中的第一个表格
name = table.cell(1,1).text #cell( ) 这是表格里面单元格的位置
bumen = table.cell(2,4).text
tel = table.cell(2,2).text
zcid = table.cell(6,1).text
data=[] #创建一个空列表,用append将表格里取出的数据加入到这个列表