This question already has an answer here:
- Delete an element from a dictionary 6 answers
In Python there are at least two methods to delete an item from a dict using a key.
d = {"keyA": 123, "keyB": 456, "keyC": 789}
#remove via pop
d.pop("keyA")
#remove via del
del d["keyB"]
Both methods would remove the item from the dict.
I wonder which the methods I should use and why. Also, which is more pythonic?