w3resource

Python: Retrieve the value of the nested key indicated by the given selector list from a dictionary or list

Python List: Exercise - 225 with Solution

Write a Python program to retrieve the value of the nested key indicated by the given selector list from a dictionary or list.

  • Use functools.reduce() to iterate over the selectors list.
  • Apply operator.getitem() for each key in selectors, retrieving the value to be used as the iteratee for the next iteration.

Sample Solution:

Python Code:

# Import the 'reduce' function from the 'functools' module and the 'getitem' function from the 'operator' module.
from functools import reduce 
from operator import getitem

# Define a function called 'get' that takes a dictionary 'd' and a list of 'selectors'.
def get(d, selectors):
  # Use the 'reduce' function to access nested dictionary values by applying 'getitem' successively.
  return reduce(getitem, selectors, d) 

# Create a nested dictionary 'users' with user information.
users = {
  'freddy': {
    'name': {
      'first': 'Fateh',
      'last': 'Harwood' 
    },
    'postIds': [1, 2, 3]
  }
}

# Example: Access values in the 'users' dictionary using nested selectors.
print(get(users, ['freddy', 'name', 'last']))
print(get(users, ['freddy', 'postIds', 1])) 

Sample Output:

Harwood
2

Flowchart:

Flowchart: Retrieve the value of the nested key indicated by the given selector list from a dictionary or list.

Python Code Editor:

Previous: Write a Python program to create a list with the unique values filtered out.
Next: Write a Python program to get a list of elements that exist in both lists, after applying the provided function to each list element of both.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.