Unfortunately. Most answers here either do not preserve the order or are too long. Here is a simple, order preserving answer.
s = [1,2,3,4,5,2,5,6,7,1,3,9,3,5]
x=[]
[x.append(i) for i in s if i not in x]
print(x)
This will give you x with duplicates removed but preserving the order.