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 comp
Best Pythonically way to do this task is
In [1]: my_list = ['a', 'b', 'c', 'd'] In [2]: (x for x in my_list) Out[2]: at 0x7fd9e4fdc230>