使用 Python 在列表中搜索字典
以字典列表为例:
dicts = [ {"name": "Tom", "age": 10}, {"name": "Mark", "age": 5}, {"name": "Pam", "age": 7}, ]
问题:如何搜索并检索包含“name”键等于“Pam”?
解决方案:
使用生成器表达式,您可以迭代字典列表并过滤出您需要的字典:
match = next(item for item in dicts if item["name"] == "Pam") print(match) # {"name": "Pam", "age": 7}
处理不存在:
如果您要搜索的名称可能不存在于列表中,您可以使用带默认参数的 next() 函数:
match = next((item for item in dicts if item["name"] == "Pam"), None) if match: print(match) else: print("No matching dictionary found.")
替代方法:
index = next((i for i, item in enumerate(dicts) if item["name"] == "Pam"), None) print(f"Matching dictionary at index {index}")
以上是如何在Python字典列表中高效搜索特定字典?的详细内容。更多信息请关注PHP中文网其他相关文章!