from collections import Counter
words1 = ['look', 'into', 'my', 'eyes', 'look', 'into', 'my', 'eyes', 'the', 'eyes', 'the', 'eyes', 'the', 'eyes', 'not', 'around', 'the', 'eyes', "don't", 'look', 'around', 'the', 'eyes', 'look', 'into', 'my', 'eyes', "you're", 'under']
words2 = ['why','are','you','not','looking','in','my','eyes']
counter = Counter(words1)
print(counter.most_common(3))
counter.update(words2)
print(counter.most_common(3))
그냥 딕셔너리로 직접 해도 몇줄 안 될텐데 ㅋㅋ
물론 라이브러리니까 각종 편의 기능 있겠지. 그런데 보통 다른 언어에서는 이런 것까지는 잘 안 만들어놓으니까 신기함. ㅎㅎ