Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b66c38f

Browse files
committed
Iterator
1 parent 902fa37 commit b66c38f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ from itertools import islice, count, repeat, cycle, chain
186186
```
187187

188188
```python
189-
<iter> = count(start=0, step=1) # Returns incremented integer endlessly.
189+
<iter> = count(start=0, step=1) # Returns incremented value endlessly.
190190
<iter> = repeat(<el> [, times]) # Returns element endlessly or 'times' times.
191191
<iter> = cycle(<collection>) # Repeats the sequence indefinitely.
192192
```

0 commit comments

Comments
 (0)