create new empty dictionary python code example
Example 1: empty dictionary python
dict_empty = {}
Example 2: how to create a new dictionary in python
myDict = {'first item' : 'definition'}
#CREATING A BLANK DICTIONARY
myDict = {}
dict_empty = {}
myDict = {'first item' : 'definition'}
#CREATING A BLANK DICTIONARY
myDict = {}