Possible Duplicate:
How do you remove duplicates from a list in Python whilst preserving order?
this question might be quite easy. For example, I ve got a list like that :
a = [1,1,1,1,2,3,4,5,5,5,5,6,7,7,8,9,14,14]
I dont want to hold the same elements in my list. So, i d like to transform it to:
a = [1,2,3,4,5,6,7,8,9,14]
How can i manage this ? Thank you in advance.