質問編集履歴
3
タイトルの修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
同じ文字列を
|
1
|
+
同じ文字列を比較しているのに同じ文字列だと判定されないので、同じ文字列だと判定できるようにしたい
|
test
CHANGED
File without changes
|
2
str.pyのif str(correct_words[q_nums[q_nums_index]]) is str(ans_words[q_nums_index]): の is を == に変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,7 +78,7 @@
|
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
-
if str(correct_words[q_nums[q_nums_index]])
|
81
|
+
if str(correct_words[q_nums[q_nums_index]]) == str(ans_words[q_nums_index]):
|
82
82
|
|
83
83
|
print("回答:"+str(correct_words[q_nums[q_nums_index]]))
|
84
84
|
|
1
I have an apple. のピリオドを無くしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
正解となる文字列は単語ごとにリストとして、correct_wordsに格納されています。
|
18
18
|
|
19
|
-
["I have an apple
|
19
|
+
["I have an apple"]から
|
20
20
|
|
21
21
|
["I","have","an","apple"]
|
22
22
|
|