having error
I am haviing error in running a program which is from Ouestion import Question question_prompts = [ 'what color are apple?\n(a)red/green,\n(b)purple,(c)magenta', 'what color are banana?\n(a)blue,\n(b)yellow,\n(c)', 'what color are strawberry?\n(a)red/pink,\n(b)blue,\n(c)green' ] Questions = [ Question(question_prompts[0], "a"), Question(question_prompts[1], "b"), Question(question_prompts[2], "a"), ] def run_test(questions): score = 0 for question in questions: answer = input(question.prompt) if answer == question.answer: score += 1 print("you earned " + str(score) + "/0" + str(len(questions)) + " points") {this is different file} class Question: def __init__(self, prompt, answer): self.answer = answer self.prompt = prompt the output i get is ModuleNotFoundError: No module named 'Ouestion'