카테고리 없음
[Python] Collections 모듈의 Counter 클래스
로그뉴
2020. 5. 8. 14:33
dictionary 사용
from collections import Counter
Counter('hello world')
# Counter({'l': 3, 'o': 2, 'h': 1, 'e': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1})
from collections import Counter
Counter('hello world').most_common(1) # [('l', 3)]