Skip to content

Instantly share code, notes, and snippets.

@dstufft
Created September 10, 2012 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dstufft/3688762 to your computer and use it in GitHub Desktop.
Save dstufft/3688762 to your computer and use it in GitHub Desktop.
import collections
def flatten(input):
stack = list(reversed(input))
while stack:
top = stack.pop()
if isinstance(top, collections.Iterable):
stack.extend(list(reversed(top)))
else:
yield top
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment