Why does list comprehension using a zip object results in an empty list? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:54:05Z http://stackoverflow.com/feeds/question/1071201 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1071201/why-does-list-comprehension-using-a-zip-object-results-in-an-empty-list 4 Why does list comprehension using a zip object results in an empty list? JaysonFix 2009-07-01T20:24:37Z 2009-07-01T20:37:42Z <pre><code>f = lambda x : 2*x g = lambda x : x ** 2 h = lambda x : x ** x funcTriple = ( f, g, h ) myZip = ( zip ( funcTriple, (1, 3, 5) ) ) k = lambda pair : pair[0](pair[1]) # Why do Output # 1 (2, 9, 3125) and Output # 2 ( [ ] ) differ? print ("\n\nOutput # 1: for pair in myZip: k(pair) ...") for pair in myZip : print ( k(pair) ) print ("\n\nOutput # 2: [ k(pair) for pair in myZip ] ...") print ( [ k(pair) for pair in myZip ] ) # script output is ... # Output # 1: for pair in myZip: k(pair) ... # 2 # 9 # 3125 # # Output # 2: [ k(pair) for pair in myZip ] ... # [] </code></pre> http://stackoverflow.com/questions/1071201/why-does-list-comprehension-using-a-zip-object-results-in-an-empty-list/1071239#1071239 12 Answer by RichieHindle for Why does list comprehension using a zip object results in an empty list? RichieHindle 2009-07-01T20:31:16Z 2009-07-01T20:31:16Z <p>Works perfectly in Python 2.6 but fails in Python 3.0 because <code>zip</code> returns a generator-style object and the first loop exhausts it. Make a list instead:</p> <pre><code>myZip = list( zip ( funcTriple, (1, 3, 5) ) ) </code></pre> <p>and it works in Python 3.0</p>