質問編集履歴
1
importの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -7,6 +7,11 @@
|
|
7
7
|
pdfのオブジェクト自体も2等分したい感じです
|
8
8
|
|
9
9
|
```python
|
10
|
+
import copy
|
11
|
+
import sys
|
12
|
+
import math
|
13
|
+
from PyPDF2 import PdfFileWriter, PdfFileReader
|
14
|
+
|
10
15
|
src_f = open(src, 'r+b')
|
11
16
|
dst_f = open(dst, 'w+b')
|
12
17
|
|