how to create new key in dictionary python code example
Example 1: add value to dictionary python
dict[key] = value
Example 2: how to create a new dictionary in python
myDict = {'first item' : 'definition'}
#CREATING A BLANK DICTIONARY
myDict = {}