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

Are there any applicable differences between dict.items() and dict.iteritems()?

From the Python docs:

dict.items(): Return a **copy** of the dictionary’s list of (key, value) pairs.

dict.iteritems(): Return an **iterator** over the dictionary’s (key, value) pairs.

If I run the code below, each seems to return a reference to the same object. Are there any subtle differences that I am missing?

#!/usr/bin/python

d={1:'one',2:'two',3:'three'}
print 'd.items():'
for k,v in d.items():
   if d[k] is v: print '\tthey are the same object' 
   else: print '\tthey are different'

print 'd.iteritems():'   
for k,v in d.iteritems():
   if d[k] is v: print '\tthey are the same object' 
   else: print '\tthey are different'   

Output:

d.items():
    they are the same object
    they are the same object
    they are the same object
d.iteritems():
    they are the same object
    they are the same object
    they are the same object
share|improve this question
1  
It's basically a difference in how they are computed. items() creates the items all at once and returns a list. iteritems() returns a generator--a generator is an object that "creates" one item at a time every time next() is called on it. – Joel Cornett May 5 '12 at 4:12

3 Answers

up vote 37 down vote accepted

It's part of an evolution. Originally Python items() built a real list of tuples and returned that. That could potentially take a lot of extra memory. Then generators were introduced to the language in general, and that method was reimplemented as a iterator-generator method named iteritems(). The original being left for backwards compatibility. One of the changes of Python 3.x is that the items() methods now also return iterators and a list is never fully built. In Python 3.x there is no iteritems() method any longer, as items() is now the same as iteritems() in Python 2.x.

share|improve this answer
11  
Note that you have missed a step in the evolution: the Py3 behavior isn't the same as iteritems(). It actually makes a full sequence-protocol object that also reflects changes to the dict (and is backed by the dict itself, rather than a redundant list)- it's been backported to 2.7 as viewitems(). – lvc May 5 '12 at 5:38

dict.items() returns a list of 2-tuples ([(key, value), (key, value), ...]), whereas dict.iteritems() is a generator that yields 2-tuples. The former takes more space and time initially, but accessing each element is fast, whereas the second takes less space and time initially, but a bit more time in generating each element.

share|improve this answer
   
Why is each element the same then? – the wolf May 5 '12 at 3:03
4  
Why would you expect them to be different? – Ignacio Vazquez-Abrams May 5 '12 at 3:04
The "copy" in the docs doesn't mean that the elements are copied (if you want that, use copy.deepcopy). It means that it's a copy of the dictionary items: if you do items = dct.items() and then modify dct by adding/deleting keys or dct[k] = other_v, items will stay the same. – Dougal May 5 '12 at 3:07
I did interpret 'copy' as meaning a deep copy and that the elements would be different... – the wolf May 5 '12 at 4:12
2  
Nothing in Python is ever a deep copy unless explicitly documented as such. – Karl Knechtel May 5 '12 at 4:21
show 2 more comments

This may help:

>>> d={1:'one',2:'two',3:'three'}
>>> type(d.items())
<type 'list'>
>>> type(d.iteritems())
<type 'dictionary-itemiterator'>

As a list, d.items() is slice-able:

>>> l1=d.items()[0]
>>> l1
(1, 'one')   # an unordered value!

As an iterator, d.iteritems() is not slice-able:

>>> i1=d.iteritems()[0]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'dictionary-itemiterator' object is not subscriptable
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.