Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created June 3, 2016 15:44
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 chuck0523/d726a6988c59ba2f1ada043320f61007 to your computer and use it in GitHub Desktop.
Save chuck0523/d726a6988c59ba2f1ada043320f61007 to your computer and use it in GitHub Desktop.
# multiple loops to flatten nested list.
a = [inner for outer in [[1,2,3],[4,5,6],[7,8,9]] for inner in outer]
print(a)
# [1, 2, 3, 4, 5, 6, 7, 8, 9]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment