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!")