いつもお世話になっております????????♂️
このコードはとある講座でのコードとなります。
じゃあその講師に聞けよと言われそうですが、
英語なので回答がいまいち要領を得られないのでここで質問させてください。
Jsonデータを取得後、そのデータからPostクラスを使ってpostsオブジェクトを作成しています。
main.py (実際のAPIデータはこちら)
python
1import requests 2from post import Post 3 4posts = requests.get('https://api.npoint.io/5abcca6f4e39b4955965').json() 5posts_obj = [] 6for post in posts: 7 posted = Post(post['id'], post['title'], post['subtitle'], post['body']) 8 posts_obj.append(posted)
post.py
python
1class Post: 2 3 def __init__(self, id, title, subtitle, body): 4 self.id = id 5 self.title = title 6 self.subtitle = subtitle 7 self.body = body
質問
実際には以下のようにしてデータにアクセスできるのに、なんでわざわざクラスを作ってオブジェクトにしているのでしょうか?
そういったやり方のほうが後々になって役に立つのでしょうか?
python
1for post in posts: 2 print(f"{post['id']} / {post['title']}")
よろしくお願いいたします。
みなさま、ありがとうございます。言葉足らずな部分が多くあり、申し訳ありません。
講座の内容はPythonのFlaskを使ってちょっとしたデータを表示させるものです。
今回のコードはその内容のデータ取得部分となります。
前回の英語での質問は、この講座とは異なる場所での質問でしたので、
ここに掲載しても仕方ないと思っていましたが、一応掲載することにします。
余計混乱する可能性もありますが、その時はすみません????????♂️
質問内容は同じで、なんでクラスから作る必要があるのか?というものです。
質問内容
Why do we have to make Question object? ????
I didn't know why I had to make Question object from question_data.
It usually works by doing this, right?
Python
1 2question = QuizBrain(question_data)
python
1 2def next_question(self): 3 current_question = self.question_list[self.question_number] 4 self.question_number += 1 5 user_answer = input(f"Q.{self.question_number}: {current_question['text']} (True/False)?: ") 6 self.check_answer(user_answer, current_question['answer'])
Of course, some code had to be modified like this.
current_question.text → current_question['text']
Please, can anyone tell me why this process was necessary? ????♂️
頂いた返信
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.
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.
I hope that makes sense.
私の解釈
もともと最初に新しいオブジェクトを作るときに、質問リストが帰るように定義してたよね?
だからquestionオブジェクト作ったら質問リスト持ってないと駄目なんだよ。
という感じで捉えてますが、それでもいまいち理解できませんでした。
ので、今回また同じようなクラスからのオブジェクト作成ではここで質問させてい頂いたというわけです。
回答1件
あなたの回答
tips
プレビュー