Possible Duplicate:
How do you remove duplicates from a list in Python whilst preserving order?
Let us consider the list:
x = ['a', 'b', 'c', 'c', 'a', 'd', 'z', 'z']
I want to delete these duplicate values list-x and want the result as:
y = ['a', 'b', 'c', 'd', 'z']