Python Quiz and Hacks For Extra Credit

This is the quiz that I have made regarding American Football as well as Mr.Mortinson's questions.

import getpass, sys # imports library/ code
from site import ENABLE_USER_SITE # imports from a site

def question_and_answer(prompt): # defines question_and_answer # definition
    print("Question: " + prompt) # asks question
    msg = input() # get input
    print("Answer: " + msg) # prints answer
    
questions = 8 # declaring variables
correct = 0
wrong = 0

def question_with_response(prompt,answer): # definition of optimized function
    print("Question: " + prompt) 
    rsp = input()
    global correct, wrong # use global variables
    if rsp == answer:
        print("Correct respose")
        correct += 1
    else:
        print("Incorrect response!")
        wrong += 1
    


print('Hey there!, ' + getpass.getuser() + " running " + sys.executable) # program logic beggins
print("You will be asked " + str(questions) + " questions.")
question_and_answer("Are you ready to take a test?") # first question begins

# definition of arrray with two strings
array=[
    ["Who was the quarterback for the Patriots 7 years ago?","Tom Brady"],
    ["Who is the current quarterback for the Patriots?","Mac Jones"],
    ["What position does Aaron Rodgers play?","Quarterback"],
    ["Who is the owner of the Patriots football team?","Robert Kraft"],
    ["What is the name of the most popular football video game?","Madden"],
    ["What command is used to include other functions that are developed?","import"],
    ["What command in this example is used to evaluate a response?","if"],
    ["Each 'if' command contains an '_________' to determine a true or false condition?","expression"]
    ]

for rows in array:
    question_with_response(rows[0],rows[1]) # third question

# percent calculation    
percent = (correct/questions) * 100 # finding a perctage

print(getpass.getuser() + " you scored " + str(correct) +"/" + str(questions) + ". You got " + str(wrong) + " questions wrong. Your percentage on this quiz is " + str(percent) + "%.") # printing out the score and percentage
Hey there!, root running /bin/python3
You will be asked 8 questions.
Question: Are you ready to take a test?
Answer: Yes
Question: Who was the quarterback for the Patriots 7 years ago?
Incorrect response!
Question: Who is the current quarterback for the Patriots?
Incorrect response!
Question: What position does Aaron Rodgers play?
Correct respose
Question: Who is the owner of the Patriots football team?
Incorrect response!
Question: What is the name of the most popular football video game?
Correct respose
Question: What command is used to include other functions that are developed?
Correct respose
Question: What command in this example is used to evaluate a response?
Correct respose
Question: Each 'if' command contains an '_________' to determine a true or false condition?
Correct respose
root you scored 5/8. You got 3 questions wrong. Your percentage on this quiz is 62.5%.