Quiz = [
        "1. How many Ounces in a gallon?", "128", 
        "2. What is the capital of the US?", "Washington DC",
        "3 How many hours in a day?", "24",
       ]
        
     

points = 0
current = 0 
quiz = 1

Print = ("Welcome to my quiz!")

while quiz < 4: 
    question = input(Quiz[current])
    if question == Quiz[current+1]:
        print = ("Nice job you got it!")
        points = points + 10
        current = current + 2 
    else: 
             print=("sorry that not correct!")
             points = points - 10 
             current = current +2 
             quiz = quiz +1
    msg =( "nice job you did it!")
    print =("msg")