New submission from Matthew Ekstrand-Abueg:

Documentation states:

    # product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
    # product(range(2), repeat=3) --> 000 001 010 011 100 101 110 

But:

>>> list(itertools.product('ABCD','xy'))
[('A', 'x'), ('A', 'y'), ('B', 'x'), ('B', 'y'), ('C', 'x'), ('C', 'y'), ('D', 
'x'), ('D', 'y')]

https://docs.python.org/2/library/itertools.html#itertools.product

----------
assignee: docs@python
components: Documentation
messages: 277188
nosy: Matthew Ekstrand-Abueg, docs@python
priority: normal
severity: normal
status: open
title: Incorrect Example in itertools.product description
type: behavior
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue28244>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to