Browse Source

Itertools

pull/3/head
Jure Šorn 6 years ago
parent
commit
6c0d1b3325
1 changed files with 1 additions and 2 deletions
  1. 3
      README.md

3
README.md

@ -772,7 +772,6 @@ from itertools import *
```python ```python
>>> chain([1, 2], range(3, 5)) >>> chain([1, 2], range(3, 5))
[1, 2, 3, 4] [1, 2, 3, 4]
```
#### Compress #### Compress
```python ```python
@ -780,7 +779,7 @@ from itertools import *
['a', 'c'] ['a', 'c']
``` ```
### Count
#### Count
```python ```python
>>> i = count(5, 2) >>> i = count(5, 2)
>>> next(i), next(i) >>> next(i), next(i)

Loading…
Cancel
Save