Welcome to my Python Quiz!

def quiz():
    points = 0
    questions = ["Who won the 2021-2022 Premier League Title?", "Which Premier League team has won the most titles?", "Who is the all time leading scorer in the Premier League?", "Who is the most successful Premier League Manager?", "How many teams play in the Premier League?", "How Many teams are relegated every year?", "When was the Premier League officially Founded?"]
    answers = ["Manchester City", "Manchester United", "Alan Shearer", "Sir Alex Ferguson", "20", "3", "1992"]
    num = 0
    while num <= 6:
        answer = input(questions[num])
        if answer == answers[num]:
            print("Correct")
            points = points + 1
        else:
            print("Incorrect")
        num += 1
    print("You got:", (points/7)*100, "%")
quiz()
Correct
Correct
Correct
Correct
Correct
Correct
Correct
Correct
You got: 100.0 %