Answers for "unique of list python"

2

unique list values python ordered

def get_unique(seq):
    seen = set()
    seen_add = seen.add
    return [x for x in seq if not (x in seen or seen_add(x))]
Posted by: Guest on December-06-2020
2

how to find unique values in list in python

mylist = ['nowplaying', 'PBS', 'PBS', 'nowplaying', 'job', 'debate', 'thenandnow']
myset = set(mylist)
print(myset)
Posted by: Guest on February-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language