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

I know that it's possible to convert generators into lists at a "low-level" (eg. list(i for i in xrange(10))), but is it possible to do the reverse without iterating through the list first (eg. (i for i in range(10)))?

Edit: removed the word cast for clarity in what I'm trying to achieve.

Edit 2: Actually, I think I may have misunderstood generators at a fundamental level. That'll teach me to not post SO questions before my morning coffee!

share|improve this question
3  
You shouldn't employ the word cast in Python since there is no variable in Python, but objects whose type can't change – eyquem May 9 '11 at 7:57
1  
@eyquem - AMEN! You shouldn't even think the word cast in Python - these are really instance constructors, creating a new object from the given argument, not reinterpreting the memory at some address as a different type. – Paul McGuire May 9 '11 at 10:14

4 Answers

Try this: an_iterator = iter(a_list) ... docs here. Is that what you want?

share|improve this answer
1  
The questioner is asking about converting a list into a generator. iter() returns an iterator which is not a generator. – cjerdonek Jul 14 '12 at 23:52

I'm not sure you mean, but what you typed is valid Python code:

>>> x = (i for i in range(10))
>>> x
<generator object at 0xb7f05f6c>
>>> for i in x: print i
0
1
2
3
4
5
6
7
8
9
share|improve this answer
1  
The relevant link to the Python documentation is here: "A generator expression yields a new generator object. Its syntax is the same as for comprehensions, except that it is enclosed in parentheses instead of brackets or curly braces." – cjerdonek Jul 14 '12 at 23:51

You can take a list out of an iterator by using the built-in function list(...) and an iterator out of a list by using iter(...):

mylist = list(myiterator)
myiterator = iter(mylist)

Indeed, your syntax is an iterator:

iter_10 = (i for i in range(10))

instead of using [...] which gives a list.

Have a look at this answer Hidden features of Python

share|improve this answer
I'm looking for a lower-level solution, that doesn't require iterating through the original list (eg, range(10) in my example). – unpluggd May 9 '11 at 14:08
So, you can use iter(mylist), that takes an iterator out of your list. – Don May 9 '11 at 14:54

Indeed it's possible but a list possesses the iterator interface already:

list.__iter__()
list.__next__() # list.next() for python 2.x

So, a "pure" conversion like

(item for item in lst) 

gives no advantage but ends in a waste of performance. On the other hand you can use comprehensions in generators, e.g.

(item for item in lst 
 if item > 10)

That's where it makes sense.

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.