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()
next()returns the next value in the iterator. So the loop body should readprint it.next(). – Jeff Mercado Jan 14 '11 at 3:22