質問編集履歴
2
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -118,13 +118,13 @@
|
|
118
118
|
|
119
119
|
for i in noun1:
|
120
120
|
|
121
|
-
box.append(i)
|
122
|
-
|
123
121
|
for j in noun2:
|
124
122
|
|
125
123
|
noun = i.similarity(j)
|
126
124
|
|
127
125
|
if noun >= 0.65:
|
126
|
+
|
127
|
+
box.append(i)
|
128
128
|
|
129
129
|
print("noun1[{}]".format(noun1.index(i)), "noun2[{}]".format(noun2.index(j)))
|
130
130
|
|
1
改善点の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -103,3 +103,35 @@
|
|
103
103
|
print(lists)
|
104
104
|
|
105
105
|
```
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
自己改善点
|
110
|
+
|
111
|
+
空のリストを作ってから、入れることによって出力できました。
|
112
|
+
|
113
|
+
よく、for文でどの様な処理がされているか、理解することが大切でした。
|
114
|
+
|
115
|
+
```python
|
116
|
+
|
117
|
+
box = []
|
118
|
+
|
119
|
+
for i in noun1:
|
120
|
+
|
121
|
+
box.append(i)
|
122
|
+
|
123
|
+
for j in noun2:
|
124
|
+
|
125
|
+
noun = i.similarity(j)
|
126
|
+
|
127
|
+
if noun >= 0.65:
|
128
|
+
|
129
|
+
print("noun1[{}]".format(noun1.index(i)), "noun2[{}]".format(noun2.index(j)))
|
130
|
+
|
131
|
+
print(i, j)
|
132
|
+
|
133
|
+
print(noun)
|
134
|
+
|
135
|
+
print('')
|
136
|
+
|
137
|
+
```
|