Skip to content

Instantly share code, notes, and snippets.

@jwdevantier
Last active December 4, 2016 16:51
Show Gist options
  • Save jwdevantier/805da8056c2826889ee61ef492ccf255 to your computer and use it in GitHub Desktop.
Save jwdevantier/805da8056c2826889ee61ef492ccf255 to your computer and use it in GitHub Desktop.
>> l =[1,2,3,4,5,6,7,8,9]
>> list(zip(l, l[1:]))
[(1, 2), (2, 3), (3, 4), (4, 5), (5, 6), (6, 7), (7, 8), (8, 9)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment