質問編集履歴

3

タイトルの修正

2021/09/22 01:45

投稿

Stella_Aqr
Stella_Aqr

スコア0

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 を == に変更

2021/09/22 01:44

投稿

Stella_Aqr
Stella_Aqr

スコア0

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]]) is str(ans_words[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. のピリオドを無くしました。

2021/09/21 15:22

投稿

Stella_Aqr
Stella_Aqr

スコア0

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