質問編集履歴

2

もう一度載せなおしました。

2020/06/23 11:09

投稿

H.JUN
H.JUN

スコア6

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,45 @@
1
- みません解決ました。回答てくださった方々ありとうございした
1
+ "text"というフォルダーの中に5つのテキストファイルがあり、内容べてをprintしたいです。しかしエラー
2
2
 
3
+
4
+
5
+ ```ここに言語を入力
6
+
7
+ import os
8
+
9
+
10
+
11
+ path = '/mnt/c/Users/4345k/Desktop/coursework/RC101/text'
12
+
13
+ path_list = os.listdir(path)
14
+
3
- 質問をすべて消してしまい、すみませんでした。
15
+ for path in path_list:
16
+
17
+ f = open(path,'r')
18
+
19
+ lines = f.readlines()
20
+
21
+ for line in lines:
22
+
23
+ print(line)
24
+
25
+ f.close()
26
+
27
+ ```
28
+
29
+ FileNotFoundError Traceback (most recent call last)
30
+
31
+ <ipython-input-25-e76fd6602cb6> in <module>
32
+
33
+ 4 path_list = os.listdir(path)
34
+
35
+ 5 for path in path_list:
36
+
37
+ ----> 6 f = open(path,'r')
38
+
39
+ 7 lines = f.readlines()
40
+
41
+ 8 for line in lines:
42
+
43
+
44
+
45
+ FileNotFoundError: [Errno 2] No such file or directory: 't2.txt'

1

解決しました

2020/06/23 11:09

投稿

H.JUN
H.JUN

スコア6

test CHANGED
File without changes
test CHANGED
@@ -1,45 +1,3 @@
1
- textというファイルの中に5個のtxtファイルが入っているですけど、それをすべてプリントしたいです。しかしできせん;;原因は何ですか...
1
+ すみませ解決ました。回答てくださった方々ありがとうございした。
2
2
 
3
-
4
-
5
- ```ここに言語を入力
6
-
7
- import os
8
-
9
-
10
-
11
- path = '/mnt/c/Users/4345k/Desktop/coursework/RC101/text'
12
-
13
- path_list = os.listdir(path)
14
-
15
- for path in path_list:
3
+ 質問をすべて消してしまい、すみませんでした。
16
-
17
- f = open(path,'r')
18
-
19
- lines = f.readlines()
20
-
21
- for line in lines:
22
-
23
- print(line)
24
-
25
- f.close()
26
-
27
- ```
28
-
29
- FileNotFoundError Traceback (most recent call last)
30
-
31
- <ipython-input-25-e76fd6602cb6> in <module>
32
-
33
- 4 path_list = os.listdir(path)
34
-
35
- 5 for path in path_list:
36
-
37
- ----> 6 f = open(path,'r')
38
-
39
- 7 lines = f.readlines()
40
-
41
- 8 for line in lines:
42
-
43
-
44
-
45
- FileNotFoundError: [Errno 2] No such file or directory: 't2.txt'