質問編集履歴

3

プログラムの誤記修正

2021/09/13 02:07

投稿

Akihiro_py
Akihiro_py

スコア55

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 tarfile.open("aaa/ccc.tgz")as tt:  ・・・エラー発生
91
+ with t.open("aaa/ccc.tgz")as tt:  ・・・エラー発生
92
92
 
93
93
  with tt.open("ccc/d.txt")as ttt:
94
94
 

2

プログラムの誤記修正

2021/09/13 02:07

投稿

Akihiro_py
Akihiro_py

スコア55

test CHANGED
File without changes
test CHANGED
@@ -64,9 +64,9 @@
64
64
 
65
65
  ```python3
66
66
 
67
- with tarfile.TarFile("aaa.zip")as t:   ・・・エラー発生
67
+ with tarfile.TarFile("aaa.tgz")as t:   ・・・エラー発生
68
68
 
69
- with t.open("aaa/ccc.zip") as tt:
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

フォルダのインデントを修正して見た目を良くした

2021/09/13 02:05

投稿

Akihiro_py
Akihiro_py

スコア55

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