PendingDeprecationWarning导入docx

时间:2019-07-14 19:14:56

标签: python import docx

我在导入docx模块时遇到问题。

当我运行此代码时:

import docx
import os
doc = docx.Document()
paragraph= doc.add_paragraph("Hello!")
doc.save("test.docx")
os.system("start test.docx")

我收到此错误:

from exceptions import PendingDeprecationWarning
ModuleNotFoundError: No module named 'exceptions'

我不知道为什么会产生此错误,我认为docx可能会折旧import PendingDeprecationWarning

我是否必须导入模块exceptions?这似乎是默认库。

抱歉的答案在这里When import docx in python3.3 I have error ImportError: No module named 'exceptions'

0 个答案:

没有答案