icon: package
itertools.zip_longest(a, b)
Returns an iterator that aggregates elements from the input iterables. If the input iterables are of different lengths, missing values are filled-in with None.
None