demo_dictionary_del2.py:
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1964 } del thisdict["model"] print(thisdict)
C:\Users\My Name>python demo_dictionary_del2.py
{'brand': 'Ford', 'year': 1964}