Kaydet (Commit) fc3ba6b8 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Add usage note

üst 4d82ade4
......@@ -496,6 +496,11 @@ loops that truncate the stream.
for i in range(times):
yield object
A common use for *repeat* is to supply a stream of constant values to *map*
or *zip*::
>>> list(map(pow, range(10), repeat(2)))
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
.. function:: starmap(function, iterable)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment