python PyPDF2.errors.DeprecationError:reader.getNumPages已弃用,并在PyPDF2 3.0.0中删除,使用len(reader.pages)代替

brqmpdu1  于 2023-10-14  发布在  Python
关注(0)|答案(1)|浏览(302)

日安
在尝试运行此代码以拆分证书的过程中,我遇到了一个断点,其中的一行代码表明我更改了这行代码。以前,代码的功能和使用没有问题,但现在我遇到了这个问题,并试图纠正它。

with fitz.open(full_path) as doc:
    while i in range(pdf.getNumPages()):
        text = doc\[i\].get_text()
gcuhipw9

gcuhipw91#

这对你有什么好处

with fitz.open(full_path) as doc: 
    while i in range(len(pdf.pages())):
        text = doc\[i\].get_text()

相关问题