I have this list below
_list_ = [{'key1': value1, 'key2': value2}, {'key1': value3, 'key2': value4}]
How do I search (case insensitive) the values of key2 and return that whole dictionary containing them?
I have this list below
_list_ = [{'key1': value1, 'key2': value2}, {'key1': value3, 'key2': value4}]
How do I search (case insensitive) the values of key2 and return that whole dictionary containing them?