Pap*_*nho 6 python ms-word python-2.7 python-docx
我正在按照python-docx网站上提供的教程创建一个MS-Word文档但是我收到一个错误:
M:\Sites>python word.py
C:\Program Files\IBM\SPSS\Statistics\22\Python\lib\site-packages\docx\styles\sty
les.py:54: UserWarning: style lookup by style_id is deprecated. Use style name a
s key instead.
warn(msg, UserWarning)
Run Code Online (Sandbox Code Playgroud)
word.py
from docx import Document
from docx.shared import Inches
import json
document = Document()
document.add_heading('Document Title', 0)
p = document.add_paragraph('A plain paragraph having some ')
p.add_run('bold').bold = True
p.add_run(' and some ')
p.add_run('italic.').italic = True
document.add_heading('Heading, level 1', level=1)
document.add_paragraph('Intense quote', style='IntenseQuote')
document.add_paragraph(
'first item in unordered list', style='ListBullet'
)
document.add_paragraph(
'first item in ordered list', style='ListNumber'
)
document.add_page_break()
document.save('demo.docx')
Run Code Online (Sandbox Code Playgroud)
小智 21
简单但很难调试.只需在样式中添加单词之间的空格.
document.add_paragraph('Intense quote',style =' IntenseQuote ')
变更为:
document.add_paragraph('Intense quote',style =' Intense Quote ')
归档时间: |
|
查看次数: |
3941 次 |
最近记录: |