Skip to content

Instantly share code, notes, and snippets.

@traderbagel
Created June 28, 2019 07:35
Show Gist options
  • Save traderbagel/7c1d6fc5136306f9963d7875bf43bdce to your computer and use it in GitHub Desktop.
Save traderbagel/7c1d6fc5136306f9963d7875bf43bdce to your computer and use it in GitHub Desktop.
python delete dictionary key #python
# 1. get deleted value
my_dict.pop('key', None)
# 2. simple but not atomic
if 'key' in my_dict: del my_dict['key']
# 3. atomic
try:
del my_dict['key']
except KeyError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment