Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a531e5b8
Commit
a531e5b8
authored
Mar 26, 2006
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Guarantee evaluation order for izip(). Document its creative uses and its limitations.
parent
1818ed70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
Doc/lib/libitertools.tex
Doc/lib/libitertools.tex
+23
-1
No files found.
Doc/lib/libitertools.tex
View file @
a531e5b8
...
@@ -276,13 +276,30 @@ by functions or loops that truncate the stream.
...
@@ -276,13 +276,30 @@ by functions or loops that truncate the stream.
def izip(*iterables):
def izip(*iterables):
iterables = map(iter, iterables)
iterables = map(iter, iterables)
while iterables:
while iterables:
result = [i
.next() for i
in iterables]
result = [i
t.next() for it
in iterables]
yield tuple(result)
yield tuple(result)
\end{verbatim}
\end{verbatim}
\versionchanged
[When no iterables are specified, returns a zero length
\versionchanged
[When no iterables are specified, returns a zero length
iterator instead of raising a
\exception
{
TypeError
}
iterator instead of raising a
\exception
{
TypeError
}
exception]
{
2.4
}
exception]
{
2.4
}
Note, the left-to-right evaluation order of the iterables is guaranteed.
This makes possible an idiom for clustering a data series into n-length
groups using
\samp
{
izip(*[iter(s)]*n)
}
. For data that doesn't fit
n-length groups exactly, the last tuple can be pre-padded with fill
values using
\samp
{
izip(*[chain(s, [None]*(n-1))]*n)
}
.
Note, when
\function
{
izip()
}
is used with unequal length inputs, subsequent
iteration over the longer iterables cannot reliably be continued after
\function
{
izip()
}
terminates. Potentially, up to one entry will be missing
from each of the left-over iterables. This occurs because a value is fetched
from each iterator in-turn, but the process ends when one of the iterators
terminates. This leaves the last fetched values in limbo (they cannot be
returned in a final, incomplete tuple and they are cannot be pushed back
into the iterator for retrieval with
\code
{
it.next()
}
). In general,
\function
{
izip()
}
should only be used with unequal length inputs when you
don't care about trailing, unmatched values from the longer iterables.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
repeat
}{
object
\optional
{
, times
}}
\begin{funcdesc}
{
repeat
}{
object
\optional
{
, times
}}
...
@@ -518,4 +535,9 @@ def pairwise(iterable):
...
@@ -518,4 +535,9 @@ def pairwise(iterable):
pass
pass
return izip
(
a, b
)
return izip
(
a, b
)
def grouper
(
n, iterable, padvalue
=
None
)
:
"grouper
(
3
, 'abcdefg', 'x'
)
--
>
(
'a','b','c'
)
,
(
'd','e','f'
)
,
(
'g','x','x'
)
"
return izip
(*[
chain
(
iterable, repeat
(
padvalue, n
-
1
))]*
n
)
\end
{
verbatim
}
\end
{
verbatim
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment