values are dictionaries containing keys "job_title" and "salary".
2. Add two employees to the employees dictionary with their respective job titles and
salaries.
3. Print the salary of the first employee you added.
Right Answer:
# Step 1
employees = {
"Akash": {"job_title": "Engineer", "salary": 50000},
"Dev": {"job_title": "Manager", "salary": 60000}
}
# Step 2 & 3
print(employees["Dev"]["salary"]) # Output: 50000