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