Skip to content

Instantly share code, notes, and snippets.

@amarseillan-zz
Created April 17, 2014 00:57
Show Gist options
  • Save amarseillan-zz/10945913 to your computer and use it in GitHub Desktop.
Save amarseillan-zz/10945913 to your computer and use it in GitHub Desktop.
intersect 2 lists in python: beautiful
intersection = list(set(list1) & set(list2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment