2 lines
83 B
Python
2 lines
83 B
Python
items = [1, 2, 3, 'a', 'b', 'c', 2, 3, 4, 'b', 'c', 'd']
|
|
unique = list(set(items))
|