質問編集履歴
3
コード改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,9 +88,9 @@
|
|
88
88
|
|
89
89
|
continue
|
90
90
|
|
91
|
-
|
91
|
+
if line != '':
|
92
92
|
|
93
|
-
|
93
|
+
ls = line.split('\t')
|
94
94
|
|
95
95
|
tmp = ls[1].split(',')
|
96
96
|
|
2
コードの書き間違え修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -96,7 +96,7 @@
|
|
96
96
|
|
97
97
|
d = {'surface':ls[0], 'base':tmp[6], 'pos':tmp[0], 'pos1':tmp[1]}
|
98
98
|
|
99
|
-
result.append(d)
|
99
|
+
result.append(d)
|
100
100
|
|
101
101
|
```
|
102
102
|
|
1
見づらかった部分を編集しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,13 +36,15 @@
|
|
36
36
|
|
37
37
|
という文を実行するとおそらく
|
38
38
|
|
39
|
-
|
39
|
+
```python
|
40
40
|
|
41
41
|
if line == 'EOS':
|
42
42
|
|
43
43
|
continue:
|
44
44
|
|
45
45
|
ls = line.split('\t')
|
46
|
+
|
47
|
+
```
|
46
48
|
|
47
49
|
|
48
50
|
|