Create a new dictionary with the key-value pair from values in a list of dictionaries based on matches from a separate list
Advertisements I am trying to get a new dictionary with the k: v pair from values in a list of dictionary based on matches from a separate list. The casing is different. My data looks like this: list_of_dicts = [ {‘fieldname’: ‘Id’, ‘source’: ‘microsoft’, ‘nullable’: True, ‘type’: ‘int’}, {‘fieldname’: ‘FirstName’, ‘source’: ‘microsoft’, ‘nullable’: True, ‘type’:… Read More Create a new dictionary with the key-value pair from values in a list of dictionaries based on matches from a separate list