python编程快速上手之第13章实践项目参考答案(13.6.3)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编程快速上手之第13章实践项目参考答案(13.6.3)相关的知识,希望对你有一定的参考价值。
import os,PyPDF2 os.chdir(‘C:\\Users\\Administrator\\Python35-32‘) dict=open(‘C:\\Users\\Administrator\\Python35-32\\dictionary.txt‘)#读入字典 pdfReader = PyPDF2.PdfFileReader(open(‘encryptedminutes.pdf‘, ‘rb‘))#读入PDF文件 for n in dict.readlines(): # print(str(n) ==‘ADOPT‘) password = n.strip(‘\n‘) if pdfReader.decrypt(password)==1: break elif pdfReader.decrypt(password.lower())==1:#验证小写 break print(‘password is ‘+ password)
以上是关于python编程快速上手之第13章实践项目参考答案(13.6.3)的主要内容,如果未能解决你的问题,请参考以下文章
python编程快速上手之第13章实践项目参考答案(13.6.3)
python编程快速上手之第10章实践项目参考答案(12.13.1)
python编程快速上手之第12章实践项目参考答案(12.13.2)