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热门推荐
4 初八祝福语简短语
10 简短56岁生日祝福语
11 发小结婚简短祝福语
12 宝宝生日祝福语大全简短
13 早晨好正能量祝福语简短
14 生病祝福语简短文案
15 给表弟的祝福语简短
16 祖国生日祝福语简短英文
17 高考前祝福语简短字句
18 英语简短祝福语给学生