質問編集履歴
2
codeの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
```python
|
8
8
|
|
9
|
-
def
|
9
|
+
def file(filename):
|
10
10
|
|
11
11
|
with open(filename,mode='r',encoding = 'utf-8') as x:
|
12
12
|
|
1
codeの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
という問題なのですが、このように考えました
|
6
|
+
|
7
|
+
```python
|
6
8
|
|
7
9
|
def = file(filename):
|
8
10
|
|
@@ -20,4 +22,6 @@
|
|
20
22
|
|
21
23
|
return a
|
22
24
|
|
25
|
+
```
|
26
|
+
|
23
27
|
このプログラムは間違いでした。分かる方教えていただけますでしょうか。
|