新手程序员在这里。我正在尝试学习如何打开/编辑/保存word文档文件。我在Windows 7 64位上使用Microsoft Word 2010.我按照本指南操作:https://python-docx.readthedocs.org/en/latest/user/quickstart.html
我跟随第一部分"打开文件"并输入前两行,没有任何内容打开。所以我一定做错了。根本无法打开信息。有什么建议吗?
答案 0 :(得分:1)
你想做什么......那就是创建一个新文档......而不是用文字
打开它打开文件
os.startfile(r"C:\Some\Folder\doc1.docx")
你所引用的docx
(python模块)用于创建新的docx文件,然后在创建后可以用word打开它们
考虑以下
from docx import Document
import os
document = Document() #create a new document
paragraph = document.add_paragraph('Lorem ipsum dolor sit amet.')
document.save('test.docx') #save it to the filesystem
os.startfile("test.docx") #open it with the default handler for docx (usually word)