Question: Question # 9 : by _ department ( d ) 1 0 p t s Given a dictionary d , that contains employee information in

Question #9: by_department (d)
10pts
Given a dictionary d, that contains employee information in the format {employee_id: {'name': name, 'position': position, 'department': department}}, returns a new dictionary with the employee information by department using the format department: [{'emp_id': employee_id, 'name': name, 'position' : position },{'emp_id': employee_id, 'name': name, 'position': position}]}. Note that employee id becomes the key and it disappears as a value in the inner dictionary. Do not mutate (change) the original dictionary.
Preconditions and Postconditions
d: dict with format {employee_id: {'name': name, 'position': position, 'department' : department},...}
Returns: dict with format {department: [{'emp_id': employee_id, 'name': name, 'position': position},{'emp_id': employee_id, 'name': name, 'position': position}],...}
 Question #9: by_department (d) 10pts Given a dictionary d, that contains

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!