mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix table formatting in itertools doc (GH-12228)
This commit is contained in:
parent
e680c3db80
commit
14e3c447c1
1 changed files with 9 additions and 4 deletions
|
@ -70,12 +70,17 @@ Iterator Arguments Resu
|
|||
:func:`permutations` p[, r] r-length tuples, all possible orderings, no repeated elements
|
||||
:func:`combinations` p, r r-length tuples, in sorted order, no repeated elements
|
||||
:func:`combinations_with_replacement` p, r r-length tuples, in sorted order, with repeated elements
|
||||
``product('ABCD', repeat=2)`` ``AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD``
|
||||
``permutations('ABCD', 2)`` ``AB AC AD BA BC BD CA CB CD DA DB DC``
|
||||
``combinations('ABCD', 2)`` ``AB AC AD BC BD CD``
|
||||
``combinations_with_replacement('ABCD', 2)`` ``AA AB AC AD BB BC BD CC CD DD``
|
||||
============================================== ==================== =============================================================
|
||||
|
||||
============================================== =============================================================
|
||||
Examples Results
|
||||
============================================== =============================================================
|
||||
``product('ABCD', repeat=2)`` ``AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD``
|
||||
``permutations('ABCD', 2)`` ``AB AC AD BA BC BD CA CB CD DA DB DC``
|
||||
``combinations('ABCD', 2)`` ``AB AC AD BC BD CD``
|
||||
``combinations_with_replacement('ABCD', 2)`` ``AA AB AC AD BB BC BD CC CD DD``
|
||||
============================================== =============================================================
|
||||
|
||||
|
||||
.. _itertools-functions:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue