StudentInfo = []
StudentInfo.append({
    "Student Name": "Joselyn Anda",
    "Grade": "11, Junior"
    "Period": ""
})
def questions_and_answer(prompt):
    print("question" + prompt)
      msg = input()
    print("Answer: " + msg)
    
def question_with_response(prompt):
    print("Question: " + prompt)
    msg = input()
    return msg

questions = 
correct = 0  

print("Fill in the following information to calculate your grade average.")

rsp = question_with_response("What is your name?")
print("Hi " + rsp + " nice to meet you :)")

rsp = question_with_response("Do you have a dog?")
print(" Me too! ")

rsp = question_with_response("Is/are your dog(s) a boy or a girl?")
print(" Oh " + rsp + "  Cool, I have 2 girls ")

def print_data(d_rec):
    print(d_rec_["Student Name"])