Answers for "check for unique elements in the given data python"

11

python list with only unique values

my_list = list(set(my_list))
Posted by: Guest on May-05-2020
0

count unique values in python

words = ['a', 'b', 'c', 'a']
unique_words = set(words)             # == set(['a', 'b', 'c'])
unique_word_count = len(unique_words) # == 3
Posted by: Guest on September-28-2020

Code answers related to "check for unique elements in the given data python"

Python Answers by Framework

Browse Popular Code Answers by Language