Skip to content

Instantly share code, notes, and snippets.

@vinaykudari
Created July 21, 2018 21:55
Show Gist options
  • Save vinaykudari/e2141ad862fb5ade0fe4fb68c082c679 to your computer and use it in GitHub Desktop.
Save vinaykudari/e2141ad862fb5ade0fe4fb68c082c679 to your computer and use it in GitHub Desktop.
unzip
list_a, list_b = zip(*zipped_object)
>> list_a
(1, 2, 3, 4, 5)
>> list_b
('a', 'b', 'c', 'd', 'e')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment