• 大小: 0.90KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-02
  • 语言: Python
  • 标签: python  pdf  删除  文件  

资源简介

页码从0开始,即:如果想删除第一页,那么请输入0 即可

资源截图

代码片段和文件信息

#A simple script to remove extra pages from a PDF doc.
#Requires python3 and PyPDF2

from PyPDF2 import PdfFileWriter PdfFileReader

output = PdfFileWriter()
input1 = PdfFileReader(open(r‘D:\BaiduNetdiskDownload\精品IT编程电子书\第A1期\《Hadoop大数据实战权威指南》QQ群:1532276.pdf‘ “rb“))

# print how many pages input1 has because why not:
print (“Input has %d pages.“ % input1.getNumPages())
print(“List the page numbers to

评论

共有 条评论