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热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短