Skip to content

Instantly share code, notes, and snippets.

@tef
Forked from dstufft/gist:3688725
Created September 10, 2012 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tef/3688778 to your computer and use it in GitHub Desktop.
Save tef/3688778 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