This is a sample script to test the use of yield... am I doing it wrong? It always returns '1'...
#!/usr/bin/python
def testGen():
for a in [1,2,3,4,5,6,7,8,9,10]:
yield a
w = 0
while w < 10:
print testGen().next()
w += 1
|
|
|
|
|
|
|
You're creating a new generator each time. You should only call
Then of course there's the normal, idiomatic generator usage:
Note that this will only call |
||||||||
|