check dict 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 try except empty
try:
print("I will try to print this line of code")
except:
pass
Example 3: python check set empty
set_variable == set() # return True if set_variable is an empty set