Skip to content

Instantly share code, notes, and snippets.

@VerosK
Created July 12, 2013 21:16
Show Gist options
  • Save VerosK/5987918 to your computer and use it in GitHub Desktop.
Save VerosK/5987918 to your computer and use it in GitHub Desktop.
Python zip() porn.
>>> a = (1,2),(3,4),(6,7)
>>> zip(*a)
[(1, 3, 6), (2, 4, 7)]
>>> zip(*zip(*a))
[(1, 2), (3, 4), (6, 7)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment