python编程快速上手之第13章实践项目参考答案(13.6.1)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编程快速上手之第13章实践项目参考答案(13.6.1)相关的知识,希望对你有一定的参考价值。

import os,PyPDF2
os.chdir(D:\\My Documents)
for folderName, subfolders, filenames in os.walk(D:\\My Documents):
  for file in filenames:
    if file.endswith(.pdf):
       pdfFile = open(file, rb)
       pdfReader = PyPDF2.PdfFileReader(pdfFile)
       pdfWriter = PyPDF2.PdfFileWriter()
       for pageNum in range(pdfReader.numPages):
         pdfWriter.addPage(pdfReader.getPage(pageNum))
       pdfWriter.encrypt(123456)
       resultPdf = open(file +encrypted.pdf, wb)
       pdfWriter.write(resultPdf)
       resultPdf.close()

 

以上是关于python编程快速上手之第13章实践项目参考答案(13.6.1)的主要内容,如果未能解决你的问题,请参考以下文章

python编程快速上手之第13章实践项目参考答案(13.6.3)

python编程快速上手之第10章实践项目参考答案(12.13.1)

python编程快速上手之第12章实践项目参考答案(12.13.2)

python编程快速上手之第12章实践项目参考答案(12.13.3)

python编程快速上手之第6章实践项目参考答案

python编程快速上手之第10章实践项目参考答案(11.11.2)