Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 53 down vote accepted

Use dict.pop():

my_dict.pop("key", None)
share|improve this answer
1  
From help(dict().pop): If key is not found, d is returned if given, otherwise KeyError is raised. I don't think that's a way to do it without raising an error... – sblom Jun 30 '12 at 20:31
@sblom: Already fixed. – Sven Marnach Jun 30 '12 at 20:31
1  
Ah I see. I must say this wasn't as obvious as I thought it was going to be, but definitely short and sweet, thank you. – Tony Jun 30 '12 at 20:49

Specifically to answer "is there a one line way of doing this?"

if 'key' in myDict: del myDict['key']

...well, you asked ;-)

share|improve this answer
1  
good catch :) I was thinking of doing that but it just felt a bit awkward. – Tony Jun 30 '12 at 20:50
1  
Yeah, pop is a definitely more concise, though there is one key advantage of doing it this way: it's immediately clear what it's doing. – zigg Jul 1 '12 at 16:30

It took me some time to figure out what exactly my_dict.pop("key", None) is doing. So I'll add this as an answer to save others googling time:

pop(key[, default])

If key is in the dictionary, remove it and return its value, else return default. If default is not given and key is not in the dictionary, a KeyError is raised

Documentation

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.