質問編集履歴
3
プログラムの誤記修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,7 +88,7 @@
|
|
88
88
|
|
89
89
|
with tarfile.open("aaa.tgz")as t:
|
90
90
|
|
91
|
-
with t
|
91
|
+
with t.open("aaa/ccc.tgz")as tt: ・・・エラー発生
|
92
92
|
|
93
93
|
with tt.open("ccc/d.txt")as ttt:
|
94
94
|
|
2
プログラムの誤記修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,9 +64,9 @@
|
|
64
64
|
|
65
65
|
```python3
|
66
66
|
|
67
|
-
with tarfile.TarFile("aaa.z
|
67
|
+
with tarfile.TarFile("aaa.tgz")as t: ・・・エラー発生
|
68
68
|
|
69
|
-
with t.open("aaa/ccc.z
|
69
|
+
with t.open("aaa/ccc.tgz") as tt:
|
70
70
|
|
71
71
|
with tarfile.TarFile(tt).open("d.txt") as ttt:
|
72
72
|
|
1
フォルダのインデントを修正して見た目を良くした
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,9 +18,9 @@
|
|
18
18
|
|
19
19
|
------┗cccフォルダ
|
20
20
|
|
21
|
-
------┣c.txt
|
21
|
+
---------┣c.txt
|
22
22
|
|
23
|
-
------┗d.txt ・・・読みたいファイル
|
23
|
+
---------┗d.txt ・・・読みたいファイル
|
24
24
|
|
25
25
|
|
26
26
|
|