从python中的字典列表中查找特定值

时间:2016-02-17 01:41:49

标签: python dictionary python-3.5

我的词典列表中包含以下数据:

data = [{'I-versicolor': 0, 'Sepal_Length': '7.9', 'I-setosa': 0, 'I-virginica': 1},
{'I-versicolor': 0, 'I-setosa': 1, 'I-virginica': 0, 'Sepal_Width': '4.2'},
{'I-versicolor': 2, 'Petal_Length': '3.5', 'I-setosa': 0, 'I-virginica': 0},
{'I-versicolor': 1.2, 'Petal_Width': '1.2', 'I-setosa': 0, 'I-virginica': 0}]

为了获得基于键和值的列表,我使用以下内容:

next((item for item in data if item["Sepal_Length"] == "7.9"))

但是,所有字典都不包含密钥Sepal_Length,我得到了:

KeyError: 'Sepal_Length'

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:7)

您可以使用dict.get获取值:

next((item for item in data if item.get("Sepal_Length") == "7.9"))

dict.getdict.__getitem__类似,只是如果密钥不存在,则会返回None(或其他一些默认值)。

作为奖励,您实际上并不需要围绕生成器表达式使用额外的括号:

# Look mom, no extra parenthesis!  :-)
next(item for item in data if item.get("Sepal_Length") == "7.9")

但如果您想指定默认值,它们会有所帮助:

next((item for item in data if item.get("Sepal_Length") == "7.9"), default)