Skip to content

Instantly share code, notes, and snippets.

@ieure
Created January 3, 2011 23:37
Show Gist options
  • Save ieure/764177 to your computer and use it in GitHub Desktop.
Save ieure/764177 to your computer and use it in GitHub Desktop.
structure = (
(('one', 'two'), 'three'),
(('four', 'five'), 'six'),
)
((one, three) for ((one, two), three) in structure)
# -> (('one', 'three'), ('four', 'six'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment