summaryrefslogtreecommitdiff
path: root/progs/a376.py
blob: f6a1f4edfaa4933da8f14e4613d560ddf4080d9b (plain)
1
2
3
4
5
from collections import Counter
def count_common(words):
  word_counts = Counter(words)
  top_four = word_counts.most_common(4)
  return (top_four)