print("What is my name?")
name = "Ederick Wong"
print("name", name, type(name))

print()


print("What is my age?")
age = 14
print("age", age, type(age))

print()


print("What school do I go to?")
school = "Del Norte High school"
print("school", school, type(school))
What is my name?
name Ederick Wong <class 'str'>

What is my age?
age 14 <class 'int'>

What school do I go to?
school Del Norte High school <class 'str'>
def print_data(d_rec):
    print(d_rec["name"], d_rec["name"])  
    print("\t", "age:", d_rec["age"]) 
    print("\t", "school:", d_rec["DOB"])
    
    print()