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))





그냥 딕셔너리로 직접 해도 몇줄 안 될텐데 ㅋㅋ