Skip to content

Instantly share code, notes, and snippets.

@SZanlongo
Created September 18, 2014 02:02
Show Gist options
  • Save SZanlongo/89e4cca62421e552b5e5 to your computer and use it in GitHub Desktop.
Save SZanlongo/89e4cca62421e552b5e5 to your computer and use it in GitHub Desktop.
Remove duplicates from a List
# https://stackoverflow.com/questions/691946/short-and-useful-python-snippets
L = [1, 2, 2, 3, 3, 3, 4, 4, 4, 4]
print list(set(L))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment