It seems that this is so basic that I must be missing something incredibly obvious. Currently when trying to delete a key from a Python dictionary, I write:
if 'key' in myDict:
del myDict['key']
Is there a one line way of doing this?
|
It seems that this is so basic that I must be missing something incredibly obvious. Currently when trying to delete a key from a Python dictionary, I write:
Is there a one line way of doing this? |
||||
|
|
|
Use
|
|||||||||||
|
|
Specifically to answer "is there a one line way of doing this?"
...well, you asked ;-) |
|||
|
It took me some time to figure out what exactly
|
|||
|
|