Skip to content

Instantly share code, notes, and snippets.

@jessepollak
Created November 25, 2013 15:33
Show Gist options
  • Save jessepollak/7643108 to your computer and use it in GitHub Desktop.
Save jessepollak/7643108 to your computer and use it in GitHub Desktop.
What is up with zip?
array_1 = [1, 2, 3, 4, 5, 6]
array_2 = [7, 8, 9, 10]
array_3 = zip(array_1, array_2)
array_3 = ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment