python 列表中嵌套字典,是否包含
时间: 2023-12-02 15:17:15 浏览: 101
python 中字典嵌套列表的方法
要判断 Python 中的列表中是否包含某个嵌套字典,可以使用 in 关键字。具体来说,需要遍历列表中的每个元素,判断该元素是否为字典,并且该字典是否包含目标键值对。例如,我们有一个包含多个嵌套字典的列表,可以像这样检查是否包含某个嵌套字典:
```
my_list = [{'name': 'Alice', 'age': 25}, {'name': 'Bob', 'age': 30}, {'name': 'Charlie', 'age': 35}]
if {'name': 'Bob', 'age': 30} in my_list:
print("The list contains Bob's dictionary")
else:
print("The list doesn't contain Bob's dictionary")
```
输出结果为 "The list contains Bob's dictionary",因为 my_list 中包含了一个字典 {'name': 'Bob', 'age': 30}。
阅读全文