flying-wyf

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)

 

分类:

技术点:

相关文章:

  • 2021-08-31
  • 2022-01-20
  • 2021-07-19
  • 2021-11-27
  • 2022-02-16
  • 2022-12-23
  • 2021-12-29
猜你喜欢
  • 2021-12-05
  • 2021-11-23
  • 2021-08-03
  • 2021-07-29
  • 2021-06-10
  • 2021-10-07
  • 2021-12-26
相关资源
相似解决方案