
Patrick B. answered 10/30/20
Math and computer tutor/teacher
This will get you started...
you can now pass the dictionary around to functions that search the dictionary
or adds new records to it
# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
print("Hello world")
studentList=[("Patrick Baldwin","02/11/1969","1747 Tarah Trace Dr. Orlando,FL 32824"), ("Kristina","your birthday","your address"), ("student3","01/23/45","address3"),
("student4","dob4","address4"), ("student5","dob5","address5"), ("student6","dob6","address6")]
dict_1=dict()
for student,dob,address in studentList:
dict_1.setdefault(student, []).append(dob)
dict_1.setdefault(student,[]).append(address)
print(dict_1)