我有一个Python字典列表,如下所示:
a = [ {'main_color': 'red', 'second_color':'blue'}, {'main_color': 'yellow', 'second_color':'green'}, {'main_color': 'yellow', 'second_color':'blue'}, ]
我想检查列表中是否已存在具有特定键/值的字典,如下所示:
// is a dict with 'main_color'='red' in the list already? // if not: add item
这是一种实现方法:
if not any(d['main_color'] == 'red' for d in a): # does not exist
括号中的部分是一个生成器表达式,该表达式True将为每个具有要查找的键值对的字典返回,否则为False。
True
False
如果密钥也可能丢失,则上面的代码可以给您一个KeyError。您可以通过使用get并提供默认值来解决此问题。如果不提供 默认 值,None则返回。
KeyError
get
None
if not any(d.get('main_color', default_value) == 'red' for d in a): # does not exist