mirror of
https://github.com/python/cpython.git
synced 2025-07-26 04:34:20 +00:00
Closes #18218: use correct variable name for starting point
This commit is contained in:
parent
b003ffa0ab
commit
edb4260ffd
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ loops that truncate the stream.
|
||||||
|
|
||||||
.. function:: count(start=0, step=1)
|
.. function:: count(start=0, step=1)
|
||||||
|
|
||||||
Make an iterator that returns evenly spaced values starting with *n*. Often
|
Make an iterator that returns evenly spaced values starting with number *start*. Often
|
||||||
used as an argument to :func:`map` to generate consecutive data points.
|
used as an argument to :func:`map` to generate consecutive data points.
|
||||||
Also, used with :func:`zip` to add sequence numbers. Equivalent to::
|
Also, used with :func:`zip` to add sequence numbers. Equivalent to::
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue