Run
# create and initialize a dictionary myDictionary = { 'a': '65', 'b': '66', 'c': '67' } # delete the item from the dictionary del myDictionary['c'] # print the dictionary items print(myDictionary)
Output