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

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!