#310: The Zip() Function
Last week we explored the most useful functions of the itertools module to cover some of the most common use-cases we have with lists. However, there is one case we left open for this post: combining multiple iterables that are related into a single iterable. In this post we explore how the zip() function allows us to do that.