We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55ed2af commit e4ec410Copy full SHA for e4ec410
docs/builtin/zip.md
@@ -32,7 +32,7 @@ Python zip() built-in function
32
33
## Other Usecases
34
35
-The zip function in Python is used to combine two or more iterables (like lists or tuples) into a single iterable of tuples.
+The zip function in Python combines multiple iterables into a single iterable of tuples.
36
37
```python
38
# Combining three lists
@@ -62,7 +62,7 @@ The zip function in Python is used to combine two or more iterables (like lists
62
63
### Zipping with Different Lengths
64
65
-When the iterables have different lengths, zip stops creating tuples when the shortest iterable is exhausted.
+zip stops creating tuples when the shortest iterable is exhausted.
66
67
68
>>> numbers = [1, 2, 3]
0 commit comments