-1
# o contador começa em -1 pq o para ler a primeira página tenho que começar do indice 0
contador = -1
def acessarPDF( c = contador):
import PyPDF2
arq = r"C:\Users\Neto\Desktop\Springer Ebooks.pdf"
lerPdf = PyPDF2.PdfFileReader(arq)
pagina = lerPdf.getPage(c)
conteudo = pagina.extractText()
return conteudo
while contador < 21:
contador += 1
acessarPDF()
pdf = acessarPDF()
print(pdf)
You shouldn’t pass the variable
contador
for the functionacesaPDF
?– GeekSilva
the error is in this way of counting, see that this invoking page -1, which is the end of the array
– Elton Nunes