ここに私が使用しているコードがあります
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
さて、このコードを実行すると、エラーが発生します: モジュール 'object' には属性 'Number' がありません
上記のコードを実行したときに得られた出力全体のスクリーンショットを、エラーとすべてを含めて撮りました。だから、見てみて、何が悪いのか教えてください。