Tagged Questions
The generator-functions tag has no wiki summary.
30
votes
10answers
5k views
What can you use Python generator functions for?
I'm starting to learn Python and I've come across generator functions, those that have a yield statement in them. I want to know what types of problems that these functions are really good at ...
13
votes
7answers
3k views
Distinction between iterator and enumerator
An interview question for a .NET 3.5 job is "What is the difference between an iterator and an enumerator"?
This is a core distinction to make, what with LINQ, etc.
Anyway, what is the difference? I ...
11
votes
1answer
486 views
Python Generator Function Names — is a prefix helpful?
Most functions are easy to name. Generally, a function name is based on what it does or the type of result it produces.
In the case of a generator function, however, the result could be a iterable ...
4
votes
3answers
622 views
How to clone a Python generator object?
Consider this scenario:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
walk = os.walk('/home')
for root, dirs, files in walk:
for pathname in dirs+files:
print ...
3
votes
3answers
88 views
Choosing a syntax for list generating expressions
C# has generator functions which have syntax like:
IEnumerable<int> GetNats(int max)
{
for (int i=0; i < max; ++i)
yield return i;
}
A feature I am interested in for my ...
2
votes
3answers
544 views
PHP Random Team Schedule Generator - Round Robin Scheduler
After getting negative feedback from asking this question in NEW question... here is my revised question. Yes it is the same project I am working on, but I was unclear that I needed to basically have ...
2
votes
2answers
226 views
Can a Python function take a generator and return generators to subsets of its generated output?
Let's say I have a generator function like this:
import random
def big_gen():
i = 0
group = 'a'
while group != 'd':
i += 1
yield (group, i)
if random.random() < 0.20:
group ...
2
votes
5answers
541 views
Can I be warned when I used a generator function by accident
I was working with generator functions and private functions of a class. I am wondering
Why when yielding (which in my one case was by accident) in __someFunc that this function just appears not to ...
1
vote
1answer
210 views
Python generator methods, deepcopy and copy
I am trying to avoid the use of deepcopy in a custom class (a Graph class)
The graphs have few attributes, such as vertices, edges, etc. and several generator methods (methods with yield).
I need ...
1
vote
1answer
101 views
Using a Simulation (MyHDL) and wxPython together
I am using the package MyHDL to do hardware simulation, but I want to put a GUI around it so that users can interactively change signals and see the other signals update.
The problem is, MyHDL uses a ...
1
vote
2answers
214 views
Fibers in Python
I'm looking for a very simple way to implement fibers in Python. I'm sure there's a really simple way to do it using generators, but my mind is crapping out on me. This isn't for a huge application, ...
1
vote
2answers
389 views
python generator function getting executed twice?
I'm using a python generator function to provide me with a list of images in the current directory. However I see the function is giving out the entire list twice instead of one time and I have no ...
0
votes
1answer
78 views
Generator function with pymongo
I am trying to make a generator function that yields an item on each call, however I keep getting the same item. Below is my code:
1 from pymongo import Connection
2
3 connection = ...
0
votes
0answers
63 views
SpringPython and generator functions
I want to decompose the workflow of my Python application into generator functions, as it is done in Part 2 of "Generator Tricks For Systems Programmers" presentation by David M. Beazley. I also want ...
0
votes
3answers
46 views
What are some useful or interesting infinite generators?
What are some clever uses for infinite generators? I've seen lots of seemingly trivial examples like "list all even numbers", but I assume there must be others that have more applicability to ...
0
votes
1answer
178 views
Left hand side of assignment with infinite generators
Sorry to double my earlier question, but I thought to ask specific data which would solve the problem. I want this result
tuple_of_vars = (item for _, item for zip(tuple_of_vars, new_vals_generator))
...
0
votes
2answers
91 views
Parallel Map (Generator) Operator
I am interested in defining a parallel map operator for my language. It transforms a list into a new list given an expression. It would have a syntax similar to a generator. Unlike generators in C# ...
0
votes
1answer
47 views
What should happen when a generator function is assigned?
If I have a programming language with first class functions. What should the semantics be when a generator function is shared?
For example:
var f = function() {
foreach (i in 0..42)
yield ...