반응형
temp = ['a', 'a', 'b', 'c']
w_count= {}
for lst in temp:
try: w_count[lst]+= 1
except: w_count[lst]=1
print(w_count) # {'a' : 2, 'b' : 1, 'c' : 1}
반응형
'-------------코딩------------- > Python 기초 코딩' 카테고리의 다른 글
pyplot 시계열 데이터 그래프 그리기 (0) | 2021.09.06 |
---|---|
AttributeError: module transformers.models.big_bird has no attribute BigBirdTokenizer (0) | 2021.06.28 |
욕설 탐지 프로그램 (0) | 2021.05.28 |
숫자만 추출하기 (0) | 2021.03.09 |
re.sub (0) | 2021.02.28 |
댓글