20 Apr
2020
20 Apr
'20
6:33 p.m.
On Mon, 20 Apr 2020 18:25:08 -0000 "Brandt Bucher" <brandtbucher@gmail.com> wrote:
This is definitely sometimes useful, but I think less often than zip_longest, which we already decided long ago isn’t important enough to push into zip but instead should be a separate function living in itertools.
I disagree. In my own personal experience, ~80% of the time when I use `zip` there is an assumption that all of the iterables are the same length.
FWIW, that's also my experience. Regards Antoine.