test = ['a', 'b', 'c', 'b']


set(test)
{'c', 'b', 'a'}


list(set(test))
['c', 'b', 'a']

 

 

+ Recent posts