Skip to content

Instantly share code, notes, and snippets.

@wswld
Created July 25, 2015 23:01
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 wswld/e90de83dd52534a42af2 to your computer and use it in GitHub Desktop.
Save wswld/e90de83dd52534a42af2 to your computer and use it in GitHub Desktop.
Unpacking List in Python
list = [[313, 135, 135], [735,468,795], [426,73468,26]]
print [x for l in list for x in l]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment