我在导入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'