⬅︎ Back to Fastest way to uniqify a list in Python
Keep in mind you can also use:>>> lst = [1, 1, 3, 4, 4, 5, 6, 7, 6]>>> set(lst)set([1, 3, 4, 5, 6, 7])
Isn't that what f6 does, apart from the final conversion to a list again?
Right. I totally missed f6()
Comment
Keep in mind you can also use:
>>> lst = [1, 1, 3, 4, 4, 5, 6, 7, 6]
>>> set(lst)
set([1, 3, 4, 5, 6, 7])
Replies
Isn't that what f6 does, apart from the final conversion to a list again?
Right. I totally missed f6()