18_python_练习题——写入文件到word文档中

想要使用python 将数据存储在doc 、docx等 word文档中,首先需要安装一个模块

python-docx

安装指令如下:

pip install python-docx

测试使用如下:

>>> from docx import Document
>>> document=docx.document
Traceback (most recent call last):
  File "", line 1, in 
NameError: name 'docx' is not defined
>>> document=Document()
>>> document.add_heading('Head',0)

>>> document.add_heading('Head,help',1)

>>> document.add_paragraph('Helllo world!')

>>> document.save('hello_world.doc')

然后就可以生成doc文档了

你可能感兴趣的:(python练习题,python开发技巧)