Skip to content

Commit e4ec410

Browse files
Update zip.md
Changes to codacy checks
1 parent 55ed2af commit e4ec410

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/builtin/zip.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Python zip() built-in function
3232

3333
## Other Usecases
3434

35-
The zip function in Python is used to combine two or more iterables (like lists or tuples) into a single iterable of tuples.
35+
The zip function in Python combines multiple iterables into a single iterable of tuples.
3636

3737
```python
3838
# Combining three lists
@@ -62,7 +62,7 @@ The zip function in Python is used to combine two or more iterables (like lists
6262

6363
### Zipping with Different Lengths
6464

65-
When the iterables have different lengths, zip stops creating tuples when the shortest iterable is exhausted.
65+
zip stops creating tuples when the shortest iterable is exhausted.
6666

6767
```python
6868
>>> numbers = [1, 2, 3]

0 commit comments

Comments
 (0)