151#Python Orientation Tasks
2#WHILE loops
3######################
4# TASKS
5######################
6
7#write a quiz program that prints a question with three possible options as answers
8#have the program take the user response and tell the user if they are right or wrong
9#If they get it wrong they must re-answer the question until they get it right
10#Use the structure in the example above to help you
11
12
13
14#EXTENSION
15#Add a counter that counts how many times you got it wrong and tells you at the end when you get it right