select dict based on a list of keys code example
Example 1: only keep few key value from dict
>>> dict_filter = lambda x, y: dict([ (i,x[i]) for i in x if i in set(y) ])
>>> large_dict = {"a":1,"b":2,"c":3,"d":4}
>>> new_dict_keys = ("c","d")
>>> small_dict=dict_filter(large_dict, new_dict_keys)
>>> print(small_dict)
{'c': 3, 'd': 4}
>>>
Example 2: filter dict by list of keys python
dict_you_want = { your_key: old_dict[your_key] for your_key in your_keys }