Run
myDict = { 'foo':12, 'bar':14, 'moo':85 } #del key:value pair from dictionary del myDict['foo'] print(myDict)
Output