python实现判断字典为空
时间: 2023-10-24 18:04:49 浏览: 168
Python 中判断列表是否为空的方法
判断字典为空可以使用以下代码:
```python
my_dict = {}
if not my_dict:
print("字典为空")
else:
print("字典不为空")
```
这段代码中,`not my_dict`用来判断字典是否为空,如果为空返回`True`,否则返回`False`。
阅读全文
Python 中判断列表是否为空的方法