Hey so I am currently trying to make a dictionary of names that pulls up a list of info already associated with that name. so far I have (dont worry this is fake info) ```def student_dict():
student_name = {'syd': student[0]}
student = ['id: ,gpa: , phone:, email']
student['syd'] = ['id: 123456789 ,gpa: 3.27 , phone: 520-555-5555, email: [email protected]']
print(student_name['syd'])```
but it isnt working and im a little uncleat on how list work in general so im worried i just might be going about it all wrong but youtube and google arent making it any clearer. Is this approach completely wrong what am I missing?