Browse Source

Itertools

pull/3/head
Jure Šorn 5 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
>>> chain([1, 2], range(3, 5))
[1, 2, 3, 4]
```
#### Compress
```python
@ -780,7 +779,7 @@ from itertools import *
['a', 'c']
```
### Count
#### Count
```python
>>> i = count(5, 2)
>>> next(i), next(i)

Loading…
Cancel
Save