对不起,我缺乏编程语言,但这是我的问题:
我正在创建一个程序,用于保存文本条目中的docx。我可以使它与.doc文件一起使用,但是它失去了不错的格式和python-docx允许的新文件扩展名。 安装python-docx并从Windows 10运行我的程序后,该程序立即关闭而不是运行。 这是我使用python-docx的程序部分:
from docx import Document
titleentry = Entry(window1, width=60, bg="white").grid(row=2,
column=1, sticky=W, pady=4)
obentry = Entry(window1, width=60, bg="white").grid(row=4,
column=1, columnspan=3, sticky=W, pady=4,)
lessentry = Entry(window1, width=60, bg="white").grid(row=6,
column=1, sticky=W, pady=4)
input = titleentry.get()
inputObjective = obentry.get()
inputLesson = lessentry.get()
document = Document()
document.add_heading(input, 0)
document.add_heading(inputObjective, level=1)
document.add_paragraph(inputLesson)
document.save(input + '.docx')
我卸载软件包后,它会根据需要运行。我相信这也是pyinstaller在将py-to-exe转换时出现问题的原因。