Return to Snippet

Revision: 27363
at June 3, 2010 12:21 by maxint


Initial Code
a = [3, 3, 5, 7, 7, 5, 4, 2]
a = list(set(a)) # [2, 3, 4, 5, 7]

Initial URL


Initial Description


Initial Title
Remove duplicate item in a list

Initial Tags
python

Initial Language
Python