Add up how many answers you get right, and get your score at the end!
To do this, we need to create a variable called score - this will get updated as you work through the quiz.
At the beginning of your program, before your for loop add a line of code like this one:
score = 0
The program now knows that it needs to keep track of something called score, and that it starts at zero.
Now find your if statement, where you work out if your response is right or not.
After the print, make a new line and add this (check your indentation!):
score += 1
+=1 means add 1!
Run your code and check for error messages - you haven't yet told the program to let you know what the score is though!
To add this, go right to the end of your code and ask it to print the score:
print(score)
Does it work?