Python-检查字典是否为空

在分析数据集时,我们可能会遇到必须处理空字典的情况。在这篇文章中,我们将看到如何检查字典是否为空。

使用if

如果字典中包含元素,则if条件的值为true。否则,它将评估为false。因此,在下面的程序中,我们将仅使用if条件检查字典的空度。

示例

dict1 = {1:"Mon",2:"Tue",3:"Wed"}
dict2 = {}
# Given dictionaries
print("The original dictionary : " ,(dict1))
print("The original dictionary : " ,(dict2))
# Check if dictionary is empty
if dict1:
   print("dict1 is not empty")
else:
   print("dict1 is empty")
if dict2:
   print("dict2 is not empty")
else:
   print("dict2 is empty")

输出结果

运行上面的代码给我们以下结果-

The original dictionary : {1: 'Mon', 2: 'Tue', 3: 'Wed'}
The original dictionary : {}
dict1 is not empty
dict2 is empty

使用bool()

如果字典不为空,则bool方法的计算结果为true。否则,它评估为false。因此我们在表达式中使用它来打印结果以使字典空无一物。

示例

dict1 = {1:"Mon",2:"Tue",3:"Wed"}
dict2 = {}
# Given dictionaries
print("The original dictionary : " ,(dict1))
print("The original dictionary : " ,(dict2))
# Check if dictionary is empty
print("Is dict1 empty? :",bool(dict1))
print("Is dict2 empty? :",bool(dict2))

输出结果

运行上面的代码给我们以下结果-

The original dictionary : {1: 'Mon', 2: 'Tue', 3: 'Wed'}
The original dictionary : {}
Is dict1 empty? : True
Is dict2 empty? : False