手机

密码

安全问题

注册 忘记密码?

详情请戳:https://www.udongman.cn/index.php?m=product&c=csp ​

有效期:2022/03/03 - 2022/08/30
修约转换科学计数法及写入word(docx包) python实现
来源: | 作者:wUw | 发布时间: 812天前 | 2167 次浏览 | 分享到:

2)设置字体及合并单元格

font_1 = document.styles['Normal']  # 样式 font_1.font.name = '思源宋体 CN'  # 字体 font_1.font.size = Pt(8) # 字号 fk = document.add_table(df2.shape[0] + 1, df2.shape[1],style="Table Grid") # 设置表格并设置框线 fk.cell(0, 0).merge(fk.cell(0, 4)) # 合并单元格 run = fk.cell(0, 0).paragraphs[0].add_run('xxxx') # 写入内容 run.font.name = '思源宋体 CN' # 指定单元格设定字体 run.font.size = Pt(20) # 指定单元格设定字号 fk.cell(0, 0).paragraphs[0].alignment = WD_PARAGRAPH_ALIGNMENT.CENTER # 居中

3)页眉页脚及分隔符

document.sections[0].header.paragraphs[0].text = 'xxxx' document.sections[1].header.paragraphs[0].text = 'xxxx' #add_page_number(document.sections[0].footer.paragraphs[0]) #document.sections[0].footer.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.RIGHT document.sections[0].footer.paragraphs[0].text = 'xxxx' document.sections[1].footer.paragraphs[0].text = 'xxxx'  document.add_section()  # 插入分节符,可当分页符用 document.add_paragraph("附页2:xxxxn")

4)import:

from docx.shared import Inches, Pt from docx.oxml.ns import qn from docx import Document from docx.enum.text import WD_PARAGRAPH_ALIGNMENT#设置字符对齐docx


  • 标题
  • 内容
  • 验证码
提交
标题内容提交时间
没有记录!