import getpass, sys
from multiprocessing.resource_sharer import stop

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

questions = 6
correct = 0

print('Hello, ' + getpass.getuser() + " running " + sys.executable)
print("You will be asked " + str(questions) + " questions.")
rsp = question_with_response("Are you ready to take a test?")
if rsp == "yes":
    print("Great, here is your first question!")
else:
    print("Okay, come back when you're ready...")
    sys.exit()

rsp = question_with_response("What command is used to include other functions that are developed?")
if rsp == "import":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")
    print("'import' was the correct answer.")

rsp = question_with_response("What command in this example is used to evaluate a response?")
if rsp == "if":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")
    print("'if' was the correct answer.")


rsp = question_with_response("Each 'if' command contains an '_________' to determine a true or false condition?")
if rsp == "expression":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")
    print("'expression' was the correct answer.")

rsp = question_with_response("Grouping a sequence of commands is called _____ _____.")
if rsp == "procedural abstraction":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")
    print("'procedural abstraction' was the correct answer.")

rsp = question_with_response("What is the command for a string concatenation?")
if rsp == "+":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")
    print("'+' was the correct answer.")

rsp = question_with_response("What can be found below the code cell in Jupyter notebook?")
if rsp == "output":
    print(rsp + " is correct!")
    correct += 1
else:
    print(rsp + " is incorrect!")
    print("'output' was the correct answer.")

print(getpass.getuser() + " you scored " + str(correct) +"/" + str(questions) + ", you received a " + str((correct/questions)*100) + "%")
Hello, parav running /Library/Developer/CommandLineTools/usr/bin/python3
You will be asked 6 questions.
Question: Are you ready to take a test?
Great, here is your first question!
Question: What command is used to include other functions that are developed?
import is correct!
Question: What command in this example is used to evaluate a response?
if is correct!
Question: Each 'if' command contains an '_________' to determine a true or false condition?
expression is correct!
Question: Grouping a sequence of commands is called _____ _____.
procedural abstraction is correct!
Question: What is the command for a string concatenation?
+ is correct!
Question: What can be found below the code cell in Jupyter notebook?
outputis correct!
parav you scored 6/6, you received a 100.0%