question = ["how many players are on offense on the feild at a time", "how many players are on defense on the feild at a time", "how many yards is the length of a football feild", "How many yards is the length of the endzone"]
answer = ["11", "11", "120 yards", "10 yards"]
points = 0

print("Take this quiz about football basic rules.")

for i in range(len(question)):
    print(question[i])
    response = input()
    print(response)

    if response == answer[i]:
        points += 1
        print("Correct, you have ", points, " points!")
    else:
        print("Incorrect, the answer was; ", answer[i])

print("You have finished the quiz with ", points, " out of ", len(question), " points!")
Take this quiz about football basic rules.
how many players are on offense on the feild at a time
11
Correct, you have  1  points!
how many players are on defense on the feild at a time
10
Incorrect, the answer was;  11
how many yards is the length of a football feild
120 yards
Correct, you have  2  points!
How many yards is the length of the endzone
10
Incorrect, the answer was;  10 yards
You have finished the quiz with  2  out of  4  points!