python中判断字典是否为空
时间: 2024-05-03 11:15:20 浏览: 230
Python 中判断列表是否为空的方法
在Python中,判断一个字典是否为空可以通过以下进行[^1]:
```python
my_dict = {}
if not my_dict:
print("Dictionary is empty")
```
这里使用了真值测试,如果字典为空,则条件为真,输出"Dictionary is empty"。如果字典不为空,则条件为假,不会输出任何内容。
阅读全文