For example I have this nested dictionary:
D = {'emp1': {'name': 'Bob', 'job': 'Mgr'},
'emp2': {'name': 'Kim', 'job': 'Dev'},
'emp3': {'name': 'Sam', 'job': 'Dev'}}
How do I print all the information when the user inputs their name (ex: 'Bob')? For example, the user is asked to enter an employee name to search for all the information about that name:
Employee ID: emp1
Employee Name: Bob
Job: Mgr