想必寫畢設(shè)的時(shí)候,大家都會(huì)遇到一個(gè)問題,那就是得在明評(píng)版的論文里面插入一個(gè)獨(dú)創(chuàng)性聲明。就因?yàn)檫@個(gè)事情,我折騰了好久,各種在線網(wǎng)站都試過了,然而基本都需要充值或者會(huì)員啥的。(小聲嚷嚷:“萬惡的資本”)
害~一不做二不休,我干脆自己寫個(gè)小工具好了。
一、代碼分析
利用PyPDF2庫便可輕松地對PDF文件進(jìn)行處理,具體用法大家可以參考這里。首先是安裝這個(gè)庫:
定義輸入和輸出對象:
# 定義輸出對象
outputName = 'output.pdf'
output = PdfFileWriter()
# 定義讀取對象
thesisPDF = PdfFileReader(open(thesisName,'rb'))
insertPDF = PdfFileReader(open(insertName,'rb'))
N_page = thesisPDF.getNumPages()
pos = int(input('論文一共有"%d"頁,請輸入需要插入的位置:'%N_page))
分別讀取論文的PDF和獨(dú)創(chuàng)性聲明的PDF,隨后將聲明插入到論文中的指定頁面:
# 將聲明插入到指定頁面
for i in range(pos):
output.addPage(thesisPDF.getPage(i))
output.addPage(insertPDF.getPage(0)) # 插入
for i in range(pos,N_page):
output.addPage(thesisPDF.getPage(i))
將結(jié)果保存到本地:
# 保存插入后的結(jié)果
output.write(open(outputName,'wb'))
到這里,我們就已經(jīng)成功的把聲明插入到指定的頁面中了。你沒有看錯(cuò),就是這么簡單~
二、完整代碼
將以上幾部分整合起來,完整的代碼如下:
# -*- coding: utf-8 -*-
"""
Created on Thu Nov 5 20:13:18 2020
@author: kimol_love
"""
import os
from PyPDF2 import PdfFileWriter, PdfFileReader
# 用戶輸入論文名
while True:
thesisName = input('請輸入論文的文件名:')
if not os.path.exists(thesisName):
print('文件不存在,請重新輸入!')
continue
if thesisName[-4:].lower() != '.pdf':
print('后綴錯(cuò)誤,請重新輸入!')
continue
break
# 用戶輸入需要插入的頁面
while True:
insertName = input('請輸入聲明的文件名:')
if not os.path.exists(insertName):
print('文件不存在,請重新輸入!')
continue
if thesisName[-4:].lower() != '.pdf':
print('后綴錯(cuò)誤,請重新輸入!')
continue
break
# 定義輸出對象
outputName = 'output.pdf'
output = PdfFileWriter()
# 定義讀取對象
thesisPDF = PdfFileReader(open(thesisName,'rb'))
insertPDF = PdfFileReader(open(insertName,'rb'))
N_page = thesisPDF.getNumPages()
pos = int(input('論文一共有"%d"頁,請輸入需要插入的位置:'%N_page))
# 將聲明插入到指定頁面
for i in range(pos):
output.addPage(thesisPDF.getPage(i))
output.addPage(insertPDF.getPage(0)) # 插入
for i in range(pos,N_page):
output.addPage(thesisPDF.getPage(i))
# 保存插入后的結(jié)果
output.write(open(outputName,'wb'))
print('"%s"已經(jīng)成功插入到"%s"的第%d頁'%(insertName,thesisName,pos))
運(yùn)行效果如下:
打開生成的output.pdf,可以發(fā)現(xiàn)已經(jīng)成功插入。
寫在最后
最后,感謝各位大大的耐心閱讀,咋們下次再會(huì)~
以上就是如何用python插入獨(dú)創(chuàng)性聲明的詳細(xì)內(nèi)容,更多關(guān)于用python插入獨(dú)創(chuàng)性聲明的資料請關(guān)注腳本之家其它相關(guān)文章!
您可能感興趣的文章:- python 插入Null值數(shù)據(jù)到Postgresql的操作
- python 在mysql中插入null空值的操作
- Python xlwings插入Excel圖片的實(shí)現(xiàn)方法
- python中的插入排序的簡單用法
- python 使用xlsxwriter循環(huán)向excel中插入數(shù)據(jù)和圖片的操作
- python簡單實(shí)現(xiàn)插入排序?qū)嵗a
- Python操控mysql批量插入數(shù)據(jù)的實(shí)現(xiàn)方法
- Python操作word文檔插入圖片和表格的實(shí)例演示
- 詳解python tkinter 圖片插入問題
- Python 如何在字符串中插入變量