python判断dict是否为空
时间: 2024-06-10 19:03:23 浏览: 237
python: 判断tuple、list、dict是否为空的方法
在Python中,你可以使用内置的`len()`函数或者直接检查`dict`的键或值集合来判断一个字典是否为空。以下是两种方法:
1. 使用`len()`函数:
如果字典的长度为0,那么它就是空的:
```python
dict_is_empty = len(my_dict) == 0
```
2. 检查键或值集合:
如果字典的键或值集合为空,也可以认为字典是空的:
```python
dict_is_empty = not bool(my_dict.keys()) or not bool(my_dict.values())
```
这里使用`not bool(...)`是因为`dict.keys()`和`dict.values()`返回的是迭代器,它们本身就是可迭代对象,因此默认情况下不是`False`,只有在没有元素时才会变为`False`。
阅读全文