Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 147 Bytes

File metadata and controls

12 lines (10 loc) · 147 Bytes

Remove a key from a Python dictionary

my_dict.pop('key', None)
try:
    del myDict['key']
except KeyError:
    pass