remove element dictionary python code example

Example 1: python delete key from dict

del dictionary['key']

Example 2: remove element from dictionary python

thisdict = {
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
thisdict.pop("model")

Example 3: delete a key value pair from a dictionary in python

mydict = {'score1': 41, 'score2': 23, 'score3': 45}

del mydict['score2']
print(mydict)
{'score1': 41, 'score3': 45}

Example 4: remove element from dictionary python

dict.pop("key")

Example 5: how to remove dictionary entry in python

del dic[key]

Example 6: remove elements from dictionary python

squares = {1: 1, 2: 4, 3: 9, 4: 16, 5: 25}

# remove a particular item, returns its value
# Output: 16
print(squares.pop(4))