fork download
  1. from collections import Counter
  2.  
  3. fruits = ["apple", "banana", "apple", "orange", "banana", "apple"]
  4. counter = Counter(fruits)
  5.  
  6. print(counter)
  7. # your code goes here
Success #stdin #stdout 0.02s 7636KB
stdin
Standard input is empty
stdout
Counter({'apple': 3, 'banana': 2, 'orange': 1})