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

Suppose I have a list that I wish not to return but to yield values from. What is the most Pythonic way to do that?

Here is what I mean. Thanks to some non-lazy computation I have computed the list ['a', 'b', 'c', 'd'], but my code through the project uses lazy computation, so I'd like to yield values from my function instead of returning the whole list.

I currently wrote it as following:

List = ['a', 'b', 'c', 'd']
for item in List:
    yield item

But this doesn't feel Pythonic to me.

Looking forward to some suggestions, thanks.

Boda Cydo.

share|improve this question
2  
Why do you need to do that, you can use "for x in container" where container is a list or container is an iterator... the syntax doesn't change regardless of the type, so why does it matter whether it is a list or an iterator? You are still going to have to hang onto the list to yield from it, so simply pass around the list. – Michael Aaron Safyan Mar 23 '10 at 8:21
Side remark: with "List", many people will think of it as a class name because of the leading uppercase (see PEP 8). You could use "list_", or "my_list", etc. – EOL Mar 23 '10 at 9:31
EOL, I appreciate your remark. Thanks. – bodacydo Mar 23 '10 at 10:01

2 Answers

up vote 8 down vote accepted

Just wrap your list by iter to create a listiterator e.g.

return iter(List)

BUT why you need to do that? you can just return List ?

share|improve this answer
Good question. And I have no answer. I will return the whole list. I just thought returning a generator was a good idea because everything in the project used generators (except this place - i get this list from a library that is not lazy). – bodacydo Mar 23 '10 at 8:29

You can build a generator by saying

(x for x in List)
share|improve this answer
So I can do return (x for x in list)? – bodacydo Mar 23 '10 at 8:20
Yes. But I don't think it'll save you much effort, since you've already computed the entire list, so why not return it? – Johannes Charra Mar 23 '10 at 8:25
1  
The built-in iter() does this for you: there is no need for a generator expression, which also has the disadvantage of being slower. – EOL Mar 23 '10 at 9:26

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.