使用Python,如何快速将Excel文档快速复制到Word中?

使用Python,如何快速将Excel文档快速复制到Word中,以下是想用多线程+队列的思想将多个表格生成多个Word,并保存到桌面上,但是程序运行不了,麻烦看下具体是哪里的问题?

import xlrd3 as xlrd
import threading
import queue
from docx import Document,section
from docx.enum.section import WD_ORIENT
from docx.enum.text import WD_PARAGRAPH_ALIGNMENT
from docx.enum.table import WD_TABLE_ALIGNMENT
from docx.enum.table import WD_ALIGN_VERTICAL
from docx.shared import Pt,Cm,Inches


def put():
    # 读取所选位置表格,并输出行数和列数
    path = r"C:\Users\Administrator\Desktop\tav.xlsx"
    workbook = xlrd.open_workbook(path)
    for sheet_names in workbook.sheet_names():
        sht = workbook.sheet_by_name(sheet_names)
        nrows = sht.nrows
        ncols = sht.ncols
        print(sht.name, ':', '共有', nrows, '行', ncols, '列。')
        q.put([nrows, ncols])

def get():
    while not q.empty():
        nrows = q.get()[0]
        ncols = q.get()[1]
        '''创建一个对应当前sheet行数和列数的Word文档表格'''
        document = Document()
        '''设置为横向页面,设置页眉'''
        section = document.sections[0]
        section.page_height = Cm(29.7)
        section.page_width = Cm(21)
        new_width, new_height = section.page_height, section.page_width
        section.orientation = WD_ORIENT.LANDSCAPE
        section.page_width = new_width
        section.page_height = new_height
        '''创建一个对应当前sheet行数和列数的Word文档表格'''
        table = document.add_table(rows=nrows, cols=ncols, style='Table Grid')
        document.add_page_break()

        '''设置表格居中对齐'''
        table.alignment = WD_TABLE_ALIGNMENT.CENTER

        '''自动调整列宽以提高单元格内容的适合度'''
        table.autofit = True

        '''设置表格样式'''
        '''设置表格内的字体样式(时代新罗马)'''
        table.style.font.name = 'Times New Roman'

        '''设置表格内容字体居中'''
        for r in range(nrows):  # 循环将每一行,每一列都设置为居中
            for c in range(ncols):
                table.cell(r, c).vertical_alignment = WD_ALIGN_VERTICAL.CENTER
                table.cell(r, c).paragraphs[0].paragraph_format.alignment = WD_TABLE_ALIGNMENT.CENTER
        document.save(r'C:\Users\Administrator\Desktop\test' + str(r) + '.doc')

if __name__ == "__main__":

    q = queue.Queue(maxsize=20)
    t0 = threading.Thread(target=put)
    t1 = threading.Thread(target=get)
    t2 = threading.Thread(target=get)
    t3 = threading.Thread(target=get)

    t0.start()
    t1.start()
    t2.start()
    t3.start()

python版本 3.8.6925.0
pycharm版本 193.6015.41
废话不多说,代码如下:

from docx import Document   #功能是打开文档
from docx.enum.text import WD_ALIGN_PARAGRAPH  # 功能是对齐
from docx.shared import Pt #设置磅数
from docx.oxml.ns import qn  #负责中文格式  以上是每次使用word要使用的库
from docx.shared import Cm   #调整行高和列宽
import xlrd
#from docx.shared import Inches   #设置图片格式
import time  #需要导入时间
year =  time.strftime("%Y")
today = time.strftime("%Y{y}%m{m}%d{d}",time.localtime()).format(y='年',m='月',d='日')  #可以更具需求任意修改中间的内容,带式不能显示中文,通过formate可以实现显示中文

document = Document()   #初始化文档
document.styles['Normal'].font.name = u'仿宋'  #设置整个文档的字体
document.styles['Normal'].font.size = Pt(12)   #设置文档磅号
document.styles['Normal'].element.rPr.rFonts.set(qn('w:esatAsia'),u'仿宋')  #设置文档的基础中文字体,否则显示中文有问题

#document.add_picture('1.PNG',width=Inches(6))    #插入图片,设置图片尺寸

xlsx = xlrd.open_workbook('定值回执统计表.xlsx')
sheetname = xlsx.sheet_names()[0]
sheet_c = xlsx.sheet_by_index(0)

for i in range(1,sheet_c.nrows):
    date0 = sheet_c.row_values(i)

    P1 = document.add_paragraph()  #增加一个自然段
    P1.alignment = WD_ALIGN_PARAGRAPH.CENTER  #对其方式为居中,不设置默认左对齐

    run1 = P1.add_run('%s年度XXX电网继电保护定值回执单'%year)    #增加自然段的内容
    run1.font.name = '仿宋'  #设置自然段的字体
    run1.element.rPr.rFonts.set(qn('w:eastAsia'),u'仿宋')  #为显示中文正确
    run1.font.size =Pt(20)  #设置中文字体磅数
    run1.font.bold = True    #设置加粗
    P1.space_after = Pt(5)  #段前的距离
    P1.space_before = Pt(5)  #段后的距离

    table = document.add_table(rows=6,cols=8,style='Table Grid')  #表示65列,style 使用word使用word自带格式
    table.run1 = table.cell(0,0).paragraphs[0].add_run('定值单编号:')  #对于合并后的单元格,table(00),使用当中的任何一个单元格都可以
    table.run1.font.name = u'仿宋'
    table.run1.element.rPr.rFonts.set(qn('w:eastAisa'),u'仿宋')
    table.cell(0,0).paragraphs[0].aligment =WD_ALIGN_PARAGRAPH.CENTER   #设置表格内容居中
    table.cell(0,0).width = Cm(2)  #设置单元格列宽
    table.cell(0,1).width = Cm(2)
    table.cell(0,2).width = Cm(4)
    table.cell(0,3).width = Cm(1)
    table.cell(0,4).width = Cm(3)
    table.cell(0,5).width = Cm(3)
    table.cell(0,6).width = Cm(1)
    table.cell(0,7).width = Cm(4)

    table.rows[0].height = Cm(1)   #设置行高
    table.rows[1].height = Cm(1)
    table.rows[2].height = Cm(3)
    table.rows[3].height = Cm(3)
    table.rows[4].height = Cm(8)
    table.rows[5].height = Cm(2)

    table.cell(0,0).merge(table.cell(0,1))  #对第1行进行合并,第0行第0列合并到第0行第5table.cell(0,3).merge(table.cell(0,4))
    table.cell(0,5).merge(table.cell(0,6))
    table.cell(1,0).merge(table.cell(1,1))  #对第1行进行合并,第0行第0列合并到第0行第5table.cell(1,3).merge(table.cell(1,4))
    table.cell(1,5).merge(table.cell(1,6))
    table.cell(2,0).merge(table.cell(4,0))
    table.cell(2,4).merge(table.cell(2,5))
    table.cell(3,1).merge(table.cell(3,7))
    table.cell(4,2).merge(table.cell(4,7))
    table.cell(5,3).merge(table.cell(5,4))
    table.cell(5,5).merge(table.cell(5,6))

    table.cell(0,0).text = '通知单编号'
    table.cell(0,2).text = '受令单位'
    table.cell(0,3).text = '设备地址'
    table.cell(0,5).text = '设备名称'
    table.cell(0,7).text = '完成时间'
    table.cell(2,0).text = '内容'
    table.cell(2,1).text = '保护型号'
    table.cell(2,3).text = '版本号'
    table.cell(2,6).text = 'CT变比'
    table.cell(4,1).text = '与定值单不符内容'
    table.cell(5,0).text = '调试人员'
    table.cell(5,2).text = '班组审核'
    table.cell(5,5).text = '中心审核'

    table.cell(1,0).text = date0[0]    #开始打印cecel表格中的内容
    table.cell(1,2).text = date0[1]
    table.cell(1,3).text = date0[2]
    table.cell(1,5).text = date0[3]
    table.cell(1,7).text = date0[4]
    table.cell(2,2).text = date0[5]
    table.cell(2,4).text = date0[6]
    table.cell(2,7).text = date0[7]
    table.cell(3,1).text = date0[8]
    table.cell(4,2).text = date0[9]
    table.cell(5,1).text = date0[10]
    document.add_page_break()  #作用是插入分页符

document.save('%s定值回执单.docx'%today)


def copy_table_from_excel_to_word():
    import time
    from win32com import client
 
    excel = client.Dispatch('Excel.Application')
    word = client.Dispatch('Word.Application')
 
    doc = word.Documents.Open('C:\\Users\\Administrator\\Desktop\\test.docx')
    wb = excel.Workbooks.Open('C:\\Users\\Administrator\\Desktop\\tav.xlsx')
    sheet = wb.Worksheets(1)
 
    tn = sheet.Cells(2, 1).value
    start_row = 2
    end_row = 2
    # 循环 把Excel第一列值一样的选中复制到word中
    while True:
        if sheet.Cells(start_row, 1).value = '':
            print('finish')
            break
        if sheet.Cells(end_row + 1, 1).value == tn:
            end_row += 1
        else:
            print(tn)
            word.Selection.InsertAfter('\n%s\n' % tn)
            word.Selection.InsertAfter('%s\n' % sheet.Cells(start_row, 2).value)
            time.sleep(0.3)
            _ = word.Selection.MoveRight()
            time.sleep(0.3)
            _ = sheet.Range('C1:H1').Copy()
            word.Selection.PasteExcelTable(False, True, False)
            time.sleep(0.3)
            _ = sheet.Range('C%d:H%d' % (start_row, end_row)).Copy()
            word.Selection.PasteExcelTable(False, True, False)
            time.sleep(0.3)
            
            start_row = end_row + 1
            end_row += 1
            tn = sheet.Cells(start_row, 1).value
 
    doc.Close()
    wb.Close()

我写了个工具可以Excel与txt相互转换