質問編集履歴

1

cide

2021/11/10 21:35

投稿

ppy2
ppy2

スコア1

test CHANGED
File without changes
test CHANGED
@@ -1,35 +1 @@
1
- python3 ---.py ./input ./output と打った時に./input 内の.txtファイルが開けず、type eroorと表記されます。
2
-
3
-
4
-
5
- import sys
6
-
7
- import glob
8
-
9
- import os
10
-
11
- import re
12
-
13
- file1=sys.argv[1]
14
-
15
- file2=sys.argv[2]
16
-
17
-
18
-
19
-
20
-
21
- path = os.path.abspath(file1)
22
-
23
- files = glob.glob(path + "/*.txt")
24
-
25
- with open(files) as f:
26
-
27
- text=f.read()
28
-
29
- print(file1)
30
-
31
- print(file2)
32
-
33
-
34
-
35
1
  ファイルを開いてそのテキストを使うのですが、開けず困っています。