it skips line 11-29 it is really annoying can you pls help me to fix my code i am brand new to coding and need help. Thanks

calculater_name = 'Tajs Calculator'
print("Please enjoy " + calculater_name + "")
print("\n")
print("Addition = +")
print("Subtraction = -")
print("Division = /")
print("Multiplication = *")
print("Please complete this quiz before using calculator! ")


class Question:
def __init__(self, prompt, answer):
    self.prompt = prompt
    self.answer = answer


question_prompts = [
"have you used a calculator before?\n(a)yes\n(b)no",
"Was it worth using?\n(a)no\n(b)yes",
]

questions = [
Question(question_prompts[0], "a"),
Question(question_prompts[1], "b"),
]

print("Thanks")

run_quiz(questions)

num1 = float(input("Enter First Number: "))
op = input("Enter Math Symbol: ")
num2 = float(input("Enter Second Number: "))

if op == "+":
print(num1 + num2)
elif op == "-":
print(num1 + num2)
elif op == "/":
print(num1 / num2)
elif op == "*":
print(num1 * num2)
else:
print('Error 138 ')
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.