336 B
336 B
title, tags
| title | tags |
|---|---|
| filter_unique | list,beginner |
Filters out the unique values in a list.
Use list comprehension and list.count() to create a list containing only the unique values.
def filter_unique(lst):
return [item for item in lst if lst.count(item) == 1]
filter_unique([1, 2, 2, 3, 4, 4, 5]) # [1, 3, 5]