import getpass, sys

def question_with_response(prompt):
    print("Question: " + prompt)
    msg = input()
    return msg

questions = 3
correct = 0
question_and_answer = input 

print('Hello, ' + getpass.getuser() + " running " + sys.executable)
print("You will be asked " + str(questions) + " questions.")
question_and_answer("Are you ready to take a test?")

rsp = question_with_response("What kernel is used to make sure your code in jupyter notebooks shows up on your fastpages?")
if rsp == "bash":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")

rsp = question_with_response("What command is used to evaluate correct or incorrect response in this example?")
if rsp == "if":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")

rsp = question_with_response("How can you create a _posts page with an image?")
if rsp == "squiggly brackets":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")

print(getpass.getuser() + " you scored " + str(correct) +"/" + str(questions))
Hello, shreyasapkal running /home/shreyasapkal/anaconda3/bin/python
You will be asked 3 questions.
Question: What kernel is used to make sure your code in jupyter notebooks shows up on your fastpages?
bash] is incorrect!
Question: What command is used to evaluate correct or incorrect response in this example?
if is correct!
Question: How can you create a _posts page with an image?
squiggly brackets is correct!
shreyasapkal you scored 2/3