Question: Write a program idLookup() that takes a dictionary as an input. The input dictionary has the employee id numbers as keys and employees' names as
Write a program idLookup() that takes a dictionary as an input. The input dictionary has the employee id numbers as keys and employees' names as values.
Here's an example dictionary: students = {'1000':"John Garcia",'2000':"Lily Lane",'3000':"Guadalupe Alvarez"}
And here's an example of how the program should run:
idLookup(students)
Enter id: 1000
John Garcia
Enter id: 2000
Lily Lane
( PYTHON )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
