반응형 counter1 [파이썬] Counter 클래스 사용법 collections 모듈의 Counter 클래스 사용법을 알아본다. Counter 클래스는 데이터의 개수를 셀 때 사용하면 편리하다. Counter 클래스를 알기 전에는 dictionary를 이용하여 카운팅을 하였다. 예를 들어 "collections"라는 문자열에 있는 각 알파벳의 수를 구해보자. def counter(word): word_count= {} for s in word: if s not in word_count: word_count[s] = 1 else: word_count[s] += 1 return word_count print(counter("collections")) #{'c': 2, 'o': 2, 'l': 2, 'e': 1, 't': 1, 'i': 1, 'n': 1, 's': 1}.. 2021. 9. 8. 이전 1 다음 반응형