Scope of Python Recursive Generators - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T02:40:16Z http://stackoverflow.com/feeds/question/850725 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/850725/scope-of-python-recursive-generators 1 Scope of Python Recursive Generators joesmoe10 2009-05-12T01:09:32Z 2009-05-12T01:20:26Z <p>Hey all, I was working on a recursive generator to create the fixed integer partitions of a number and I was confused by a scoping issue.</p> <p>The code is similar to this snippet.</p> <pre><code>def testGen(a,n): if n &lt;= 1: print('yield', a) yield a else: for i in range(2): a[i] += n for j in testGen(a,n-i-1): yield j </code></pre> <p>My confusion is illustrated below.</p> <pre><code>&gt;&gt;&gt; list(testGen([1,2],4)) yield [10, 2] yield [10, 4] yield [10, 7] yield [12, 11] yield [12, 13] [[12, 13], [12, 13], [12, 13], [12, 13], [12, 13]] </code></pre> <p>I can get the right answer simply by using a copy of the array (e.g. passing in <code>a[:]</code> to the recursive call) but I still don't understand the above behavior. Why are the print statements and yield values different?</p> http://stackoverflow.com/questions/850725/scope-of-python-recursive-generators/850729#850729 2 Answer by zacharyrsnow for Scope of Python Recursive Generators zacharyrsnow 2009-05-12T01:13:36Z 2009-05-12T01:13:36Z <p>I would guess you are mutating the array, so when you print it has a particular value, then the next time you print it has actually updated the value, and so on. At the end, you have 5 references to the same array, so of course you have the same value 5 times.</p> http://stackoverflow.com/questions/850725/scope-of-python-recursive-generators/850733#850733 2 Answer by John Fouhy for Scope of Python Recursive Generators John Fouhy 2009-05-12T01:17:26Z 2009-05-12T01:17:26Z <p>The print statement displays the list at that particular point in time. Your code changes the list as you run it, so by the time you examine the list at the end, you see its value then.</p> <p>You can observe this by stepping through:</p> <pre><code>&gt;&gt;&gt; g = testGen([1,2],4) &gt;&gt;&gt; g.next() ('yield', [10, 2]) # note brackets in print statement because I'm on python 2.5 [10, 2] &gt;&gt;&gt; g.next() ('yield', [10, 4]) [10, 4] &gt;&gt;&gt; g.next() ('yield', [10, 7]) [10, 7] &gt;&gt;&gt; g.next() ('yield', [12, 11]) [12, 11] &gt;&gt;&gt; g.next() ('yield', [12, 13]) [12, 13] </code></pre> http://stackoverflow.com/questions/850725/scope-of-python-recursive-generators/850739#850739 0 Answer by Unknown for Scope of Python Recursive Generators Unknown 2009-05-12T01:19:19Z 2009-05-12T01:19:19Z <p>The print and yield statements are different because you only have one print statement while you have 2 yields. Try this:</p> <pre><code>def testGen(a,n): if n &lt;= 1: print('yield', a) yield a else: for i in range(2): a[i] += n for j in testGen(a,n-i-1): print('yield', j) yield j &gt;&gt;&gt; list(testGen([1,2],4)) ('yield', [10, 2]) ('yield', [10, 2]) ('yield', [10, 2]) ('yield', [10, 2]) ('yield', [10, 4]) ('yield', [10, 4]) ('yield', [10, 4]) ('yield', [10, 4]) ('yield', [10, 7]) ('yield', [10, 7]) ('yield', [10, 7]) ('yield', [12, 11]) ('yield', [12, 11]) ('yield', [12, 11]) ('yield', [12, 13]) ('yield', [12, 13]) ('yield', [12, 13]) [[12, 13], [12, 13], [12, 13], [12, 13], [12, 13]] </code></pre> <p>You will see that the last yields are your answers because you've been passing around the same list instead of making a copy.</p> http://stackoverflow.com/questions/850725/scope-of-python-recursive-generators/850742#850742 2 Answer by sykora for Scope of Python Recursive Generators sykora 2009-05-12T01:20:26Z 2009-05-12T01:20:26Z <p>Lists are mutable objects, if you pass in a list, and the generator performs in-place operations on that list, then finally all references to the list will point to the same list.</p>