myDict = {'first item' : 'definition'} #CREATING A BLANK DICTIONARY myDict = {}
a = {"Hello":1} a["Bye"] = 2 print(a) # {'Hello':1,'Bye':2}