Zip / Enumerate from python
zip2
s together parallel lists into a list-of-lists. It is named zip2 to not collide with utils.
zip2(...) enumerate(...)
... |
Objects to be zipped together. |
enumerate
zips together a list with it's indices.
a list of lists
zip2(1:5,1:10) enumerate(l=LETTERS)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.