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

What I want to do is print the integers 0 through 5 in the code below but all I get is an address of the iterator?

def main():

    l = []
    for i in range(0,5):
        l.append(i)

    it = iter(l)

    for i in range(0,5):
        print it
        it.next()

if __name__ == '__main__':
    main()
share|improve this question
Just so you know, calling next() returns the next value in the iterator. So the loop body should read print it.next(). – Jeff Mercado Jan 14 '11 at 3:22
Quick way to produce your iterator: it = iter(range(5)) – nakedfanatic Jan 14 '11 at 4:09
You might be interested in this stack-exchange proposal. It's almost ready to begin beta, just needs a few more. – greatwolf Jan 19 '11 at 4:30

3 Answers

up vote 3 down vote accepted

To access the values returned by an iterator, you use the next() method of the iterator like so:

try:
    while True:
        val = it.next()
        print(val)
except StopIteration:
    print("Iteration done.")

next() has both the purpose of advancing the iterator and returning the next element. StopIteration is thrown when iteration is done.

Since this is quite cumbersome, all of this is wrapped nicely up in the for-syntax:

for i in it:
    print(i)
print("Iteration done.")

More links:

share|improve this answer
On the first code block, is it possible to not include the try statement? – lost_with_coding Jan 14 '11 at 3:30
Yes, but then the exception will be thrown further up. – Sebastian Paaske Tørholm Jan 14 '11 at 3:42
1  
Er... don't you mean something like for i in it: print i? The way you have it, every other element will be skipped, because the iterator is advanced twice per iteration: once explicitly with .next and once implicitly by the for loop. – Karl Knechtel Jan 14 '11 at 3:44
Whoops, you're very much right. Corrected. – Sebastian Paaske Tørholm Jan 14 '11 at 3:51

When you have an iterator, you have to iterate over it, not over a range.

for i in it:
    print(i)
share|improve this answer
Thanks, works now. – lost_with_coding Jan 14 '11 at 3:22
Is there a way to dereference an iterator like in C++ using *it? – lost_with_coding Jan 14 '11 at 3:23
No, Python doesn't use pointers at all. And why would you want to? Dereferencing is used to get a value, and Python already hands you that value. Try not to think in C++ terms at all when working with Python. – Hollister Jan 14 '11 at 3:30
Python it.next() is roughly equivalent to C++ *it++. You don't get to separate the operations. – Karl Knechtel Jan 14 '11 at 3:45

When you are using the for loop, you are actually calling the iterator object's __next__ method implicitly. So, you would just not use something like range, but instead just use iterator itself.

for i in it:
    print i

For what it is worth, xrange in Python 2 and range in Python 3 returns an iterator, so you just write your first loop with those to have your desired solution,

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.