Why does x,y = zip(*zip(a,b)) work in Python?

The asterisk in Python is documented in the Python tutorial, under Unpacking Argument Lists.

Leave a Comment