without haste but without rest
[python] Counter 함수 본문
from collections import Counter
text = ['apple', 'banana', 'apple', 'orange']
c = Counter(text)
// Counter to dictionary
from collections import Counter
text = ['apple', 'banana', 'apple', 'orange']
c = dict(Counter(text))
print(c)
print(type(c))
언젠가 요긴하게 쓰지 않을까 싶은 함수
'ProgrammingLanguage > Python' 카테고리의 다른 글
[python] 파이참에서 아나콘다 가상환경으로 작업하기 (0) | 2020.07.15 |
---|---|
[python] 알파뱃 리스트 (0) | 2020.07.10 |
[python] 텍스트 데이터 전처리 (0) | 2020.04.25 |
[python] 자잘한 not 사용법 (0) | 2020.04.24 |
[python] random 라이브러리 (0) | 2020.04.13 |
Comments