Skip to content

Instantly share code, notes, and snippets.

@dstufft
Created September 10, 2012 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dstufft/3688725 to your computer and use it in GitHub Desktop.
Save dstufft/3688725 to your computer and use it in GitHub Desktop.
import collections
def flatten(input, seen=None):
for item in input:
if isinstance(item, collections.Iterable):
for sub in flatten(item):
yield sub
else:
yield item
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment