extract_field(records, field) where records is a list of dictionaries. Return a list of the values found under field for each record, in order. If a record does not contain field, use None in its place.records = [{'name': 'Ana', 'age': 30}, {'name': 'Bo'}], field = 'age'[30, None]
Ana has an age of 30; Bo has no age key so None is used.
dict.get(field) returns None automatically when the key is missing.