Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any advantage to using keys() function?

for word in dictionary.keys():
    print word

vs

for word in dictionary:
    print word
share|improve this question

1 Answer

up vote 11 down vote accepted

Yes, in Python 2.x iterating directly over the dictionary saves some memory, as the keys list isn't duplicated.

You could also use .iterkeys(), or in Python 2.7, use .viewkeys().

In Python 3.x, .keys() is a view, and there is no difference.

So, in conclusion: use d.keys() (or list(d.keys()) in python 3) only if you need a copy of the keys, such as when you'll change the dict in the loop. Otherwise iterate over the dict directly.

share|improve this answer
1  
It's worth pointing out that key in d is considered more idiomatic (and certainly neater on the page) than key in d.keys() or key in d.iterkeys(). – poorsod Dec 19 '12 at 21:09

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.