how to remove an item in dictionary python code example
Example 1: how to remove dictionary entry in python
del dic[key]
Example 2: 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))