how to check if dictionary is not empty python code example
Example 1: check dictionary is empty or not in python
test_dict = {}
if not test_dict:
print "Dict is Empty"
if not bool(test_dict):
print "Dict is Empty"
if len(test_dict) == 0:
print "Dict is Empty"
Example 2: python check if dictionary empty
# Using the not operator, Check if dictionary is empty
test_dict = {}
res = not test_dict
print("Is dictionary empty ? : " + str(res))
# Output :
# Is dictionary empty ? : True