[New-bugs-announce] [issue3522] zip() function example in tutorial

Jim Sizelove report at bugs.python.org
Fri Aug 8 02:11:53 CEST 2008


New submission from Jim Sizelove <jimsize at gmail.com>:

The zip() function is now a generator in Python 3.0.  There is an
example of using the zip() function in the Python 3.0 tutorial,
http://docs.python.org/dev/3.0/tutorial/datastructures.html.

When running the example, I got:

>>> mat = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
>>> zip(*mat)
<zip object at 0x70fc60>

I wrapped it in a call to list() to get the example output:

>>> list(zip(*mat))
[(1, 4, 7), (2, 5, 8), (3, 6, 9)]


The attached patch file contains this change.

----------
assignee: georg.brandl
components: Documentation
files: datastructures.diff
keywords: patch
messages: 70871
nosy: georg.brandl, jsizelove
severity: normal
status: open
title: zip() function example in tutorial
versions: Python 3.0
Added file: http://bugs.python.org/file11077/datastructures.diff

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3522>
_______________________________________


More information about the New-bugs-announce mailing list