import PyPDF2 file=open("sample.pdf","rb") reader=PyPDF2.PdfFileReader(file) page1=reader.getPage(1) pdfData=page1.extractText() ...
確定! 回上一頁