⬅︎ Back to Fastest way to uniqify a list in Python
problem with the previous comment:>>> lst = ['a','a','b',1,1,2,3,4,5]>>> set(lst)set(['a', 1, 2, 'b', 4, 5, 3])
Comment
problem with the previous comment:
>>> lst = ['a','a','b',1,1,2,3,4,5]
>>> set(lst)
set(['a', 1, 2, 'b', 4, 5, 3])