質問編集履歴
2
消えていたインデントの部分を修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,6 +44,6 @@
|
|
44
44
|
|
45
45
|
with open(' Desktop\テスト/test1.pdf', 'wb') as f:
|
46
46
|
|
47
|
-
dst_pdf.write(f)
|
47
|
+
dst_pdf.write(f)
|
48
48
|
|
49
49
|
```
|
1
コードの挿入でコードを記述しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,9 +12,7 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
|
15
|
+
```Python
|
16
|
-
|
17
|
-
|
18
16
|
|
19
17
|
import PyPDF2
|
20
18
|
|
@@ -47,3 +45,5 @@
|
|
47
45
|
with open(' Desktop\テスト/test1.pdf', 'wb') as f:
|
48
46
|
|
49
47
|
dst_pdf.write(f)
|
48
|
+
|
49
|
+
```
|