⬅︎ Back to Fastest way to uniqify a list in Python
I find a way to get the unique listA = [1,1,2,2,3,3]A = [i for i in set(A)]
Comment
I find a way to get the unique list
A = [1,1,2,2,3,3]
A = [i for i in set(A)]