demo_ref_dictionary_pop.py:
car = { "brand": "Ford", "model": "Mustang", "year": 1964 } car.pop("model") print(car)
C:\Users\My Name>python demo_dictionary_pop.py
{'brand': 'Ford', 'year': 1964}