how to use 'zip' to create a dictionary
student_id = [100, 101, 102, 103, 104]
student_name = ['David', 'Simon', 'Victor', 'Eric', 'Frank']
student_dict = {student_id: student_name for student_id, student_name in zip(student_id, student_name)}
print(student_dict)
student_dict[102] # id is the 'key', name is the '