Write a python function that would filter a list of dictionaries where a specified key equals given value, list_of_dictionaries, key and value are inputs to this function.
Topic: Write a python function that would filter a list of dictionaries where a specified key equals given value, list_of_dictionaries, key and value are inputs to this function.
Solution
def filter_with_key_value(list_of_dicts, key, value): return list( filter( lambda x: x.get(key) == value, list_of_dicts ) )
List all Python Programs