这是我正在使用的代码
import os
import decimal
from pyPdf import PdfFileReader
path = r"E:\python\Real Python\Real Python\Course materials\Chapter 8\Practice files"
inputFileName = os.path.join(path,"Pride and Prejudice.pdf")
inputFile = PdfFileReader(file(inputFileName,"rb"))
print "Number of pages:", inputFile.getNumPages()
print "Title:", inputFile.getDocumentInfo().title
现在,当我运行此代码时,我收到一个错误:
'module' object has no attribute 'Number'
我拍了一张我得到的整个输出的截图 当我运行上面的代码,有错误和一切。 那么,请看一下,让我知道什么是错的?
在代码中使用import decimal
后,
我有一些错误。
所以,我拍了整张照片的截图,并将它附在此处。