Me and Anthoy’s quiz

This is a hack, We worked hard on this TRUST
# Define a list of questions, answer choices, and correct answers
questions = [
    {
        "question": "What is an if function",
        "choices": ["A) a queston", "B) I cant code :(", "C) a condition", "D) trick queston"],
        "correct_answer": "C"
    },
    {
        "question": "What does i mean in a loop",
        "choices": ["A) Inception ", "B) Index", "C) just an uneeded variable", "D) Undefined"],
        "correct_answer": "B"
    },
    {
        "question": "what is the meaning of life",
        "choices": ["A) CSP", "B) Code Code Code", "C) Nothingness ", "D) Death "],
        "correct_answer": "B"
    }
]

# Initialize a variable to keep track of the score
score = 0

# Iterate through the questions
for i, question in enumerate(questions, 1):
    print(f"Question {i}: {question['question']}")
    for choice in question['choices']:
        print(choice)
    
    # Get the user's answer
    user_answer = input("Enter your answer (A/B/C/D): ").upper()

    # Check if the user's answer is correct
    if user_answer == question['correct_answer']:
        print("Correct!\n")
        score += 1
    else:
        print(f"Wrong. The correct answer is {question['correct_answer']}.\n")

# Display the final score
print(f"You got {score} out of {len(questions)} questions correct.")

Question 1: What is an if function
A) a queston
B) I cant code :(
C) a condition
D) trick queston
Wrong. The correct answer is C.

Question 2: What does i mean in a loop
A) Inception 
B) Index
C) just an uneeded variable
D) Undefined
Wrong. The correct answer is B.

Question 3: what is the meaning of life
A) CSP
B) Code Code Code
C) Nothingness 
D) Death 
Wrong. The correct answer is B.

You got 0 out of 3 questions correct.