python dictionary empty 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: empty dictionary python
dict_empty = {}
Example 3: python empty dictionary
# Initializes an empty dictionary:
mydict = dict()
# or
mydict ={}
# Empties a dicionary:
mydict.clear()
Example 4: python create empty dictionary with keys
>>> keys = [1,2,3,5,6,7]
>>> {key: None for key in keys}
{1: None, 2: None, 3: None, 5: None, 6: None, 7: None}
Example 5: how to empty a dictionary in python
dict.clear()