创建变量和创建类时发生TypeError

时间:2019-04-24 09:08:19

标签: python typeerror python-docx

我正在学习python-docx(请参阅下文),但遇到TypeError麻烦。

运行document = Document()时出现此错误:

  

TypeError:super(type,obj):obj必须是的实例或子类型   类型。

我正在使用Windows和spyder(python 3.7)。

from docx import Document
from docx.shared import Inches

document = Document()#create one variable call document and create document class
document.add_heading("Hello World")
document.add_paragraph("This is a test")

0 个答案:

没有答案