CODE
def question1():
    q1_answer = input("In what year was the Gunpowder Plot?")
    if q1_answer =="1605":
        print("You are right!")
        question2()
    else:
        print("That isn't right ... have another go")
        question1()
#This code contains errors.  Can you fix this Python code? Have a go!
        
Welcome to Python Online.
		
Type in your Python code and click on the RUN button or use the following shortcuts:

Chrome and Edge on Windows: Alt + R
Firefox on Windows: Alt + Shift + R
Firefox and Chrome on Mac: Control + Option + R
Firefox and Chrome on Linux: Alt + Shift + R
OUTPUT
FUNCTION CALLS