![]() |
Question() takes no arguments - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Question() takes no arguments (/thread-25545.html) |
Question() takes no arguments - jwrcfv - Apr-02-2020 Hi guys, I just started to learn python and tried to write a simple multiple-choice code, but it kept reporting an error. Could someone help me with that? This is the class I create: class Question: def __int__(self, prompt, answer): self.prompt = prompt self.answer = answerThis is the multiple-choice question: from Question import Question question_prompts = [ "What color are apples?\n(a) Red/Green\n(b) Purple\n(c) Orange\n\n", "What color are Bananas?\n(a) Teal\n(b) Magenta\n(c) Yellow\n\n", "What color are strawberries?\n(a) Yellow\n(b) Red\n(c) Blue\n\n" ] questions = [ Question(question_prompts[0], "a"), Question(question_prompts[1], "c"), Question(question_prompts[2], "b"), ] def run_test(question): score = 0 for question in questions: answer = input(question.prompt) if answer == question.answer: score += 1 print("You got " + str(score) + "/" + str(len(question)) + " correct") run_test(questions)This is the traceback:
RE: Question() takes no arguments - ndc85430 - Apr-02-2020 Line 2 in your Question class has a typo in it.
RE: Question() takes no arguments - jwrcfv - Apr-02-2020 (Apr-02-2020, 05:55 PM)ndc85430 Wrote: Line 2 in your xxxD oh my... silly problemThanks for help >.< |