Answers for "count occurrences of dupliates in python"

7

python count repeated elements in a list

# Basic syntax:
dict_of_counts = {item:your_list.count(item) for item in your_list}

# Example usage:
your_list = ["a", "b", "a", "c", "c", "a", "c"]
dict_of_counts = {item:your_list.count(item) for item in your_list}
print(dict_of_counts)
--> {'a': 3, 'b': 1, 'c': 3}
Posted by: Guest on December-15-2020

Code answers related to "count occurrences of dupliates in python"

Python Answers by Framework

Browse Popular Code Answers by Language