質問編集履歴
1
英語での実際の質問と回答の掲載
test
CHANGED
File without changes
|
test
CHANGED
@@ -81,3 +81,113 @@
|
|
81
81
|
```
|
82
82
|
|
83
83
|
よろしくお願いいたします。
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
---
|
88
|
+
|
89
|
+
みなさま、ありがとうございます。言葉足らずな部分が多くあり、申し訳ありません。
|
90
|
+
|
91
|
+
講座の内容はPythonのFlaskを使ってちょっとしたデータを表示させるものです。
|
92
|
+
|
93
|
+
今回のコードはその内容のデータ取得部分となります。
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
**前回の英語での質問は、この講座とは異なる場所での質問でした**ので、
|
98
|
+
|
99
|
+
ここに掲載しても仕方ないと思っていましたが、一応掲載することにします。
|
100
|
+
|
101
|
+
余計混乱する可能性もありますが、その時はすみません????????♂️
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
質問内容は同じで、なんでクラスから作る必要があるのか?というものです。
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
### 質問内容
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
Why do we have to make Question object? ????
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
I didn't know why I had to make Question object from question_data.
|
118
|
+
|
119
|
+
It usually works by doing this, right?
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
```Python
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
question = QuizBrain(question_data)
|
128
|
+
|
129
|
+
```
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
```python
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
def next_question(self):
|
140
|
+
|
141
|
+
current_question = self.question_list[self.question_number]
|
142
|
+
|
143
|
+
self.question_number += 1
|
144
|
+
|
145
|
+
user_answer = input(f"Q.{self.question_number}: {current_question['text']} (True/False)?: ")
|
146
|
+
|
147
|
+
self.check_answer(user_answer, current_question['answer'])
|
148
|
+
|
149
|
+
```
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
Of course, some code had to be modified like this.
|
156
|
+
|
157
|
+
```ここに言語を入力
|
158
|
+
|
159
|
+
current_question.text → current_question['text']
|
160
|
+
|
161
|
+
```
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
Please, can anyone tell me why this process was necessary? ????♂️
|
170
|
+
|
171
|
+
### 頂いた返信
|
172
|
+
|
173
|
+
We have defined the QuizBrain class to expect a list of questions when you first create a new object. You can see that from the __init__ function.
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
Therefore when you created your object called "question", it must have a list of questions. In this case "question_data" is the list of questions and answers for your "question" object.
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
I hope that makes sense.
|
182
|
+
|
183
|
+
### 私の解釈
|
184
|
+
|
185
|
+
もともと最初に新しいオブジェクトを作るときに、質問リストが帰るように定義してたよね?
|
186
|
+
|
187
|
+
だからquestionオブジェクト作ったら質問リスト持ってないと駄目なんだよ。
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
という感じで捉えてますが、それでもいまいち理解できませんでした。
|
192
|
+
|
193
|
+
ので、今回また同じようなクラスからのオブジェクト作成ではここで質問させてい頂いたというわけです。
|