python dict del code example
Example 1: remove element from dictionary python
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.pop("model")
Example 2: how to remove dictionary entry in python
del dic[key]
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.pop("model")
del dic[key]