Returns the item at the given index from inside each tuple in the list.
(i, iterable)
| 68 | return _zip(*[i + [default.get("default", None)] * (n-len(i)) for i in args]) |
| 69 | |
| 70 | def unzip(i, iterable): |
| 71 | """ Returns the item at the given index from inside each tuple in the list. |
| 72 | """ |
| 73 | return [x[i] for x in iterable] |
| 74 | |
| 75 | def intersects(iterable1, iterable2): |
| 76 | """ Returns True if the given lists have at least one item in common. |