↻
⏵︎ Run
# create and initialize a dictionary myDictionary = { 'a': '65', 'b': '66', 'c': '67' } # add new items to the dictionary myDictionary['c'] = '68' # print dictionary print(myDictionary)
Output