Skip to content

Instantly share code, notes, and snippets.

@xiaom
Created October 28, 2011 03:17
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 xiaom/1321544 to your computer and use it in GitHub Desktop.
Save xiaom/1321544 to your computer and use it in GitHub Desktop.
how to eliminate duplicate in a list
# http://docs.python.org/faq/programming.html#how-do-you-remove-duplicates-from-a-list
mylist = list(set(mylist))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment