- collections 모듈의 Counter 클래스는 별도 패키치 설치가 필요 없으므로, import해서 사용
- Counter 클래스는 list, tuple, set 객체를 이용하여 key-value 쌍 생성
import collections
dummy_list1 = ["a", "c", "b", "a"]
print(collections.Counter(dummy_list1))
2개의 Counter 객체는 빼고 더하는 것이 가능함
import collections
dummy_list1 = ["a", "c", "b","a"]
dummy_list2 = ["b", "a", "c", "d"]
counter1 = collections.Counter(dummy_list1)
counter2 = collections.Counter(dummy_list2)
print(counter1)
print(counter2)
print(counter2 - counter1)
반응형
'Python' 카테고리의 다른 글
[Python] sum 함수 - sum의 인자 iterable, start에 대하여 (0) | 2023.06.14 |
---|---|
[Python] map 함수 - function, lambda (0) | 2023.06.13 |
[Python] list 정렬 - sort, sorted의 차이 (0) | 2023.06.13 |
[Python] Visual Studio Code에서 가상환경 만들기 (0) | 2022.03.02 |
[Python] Numpy Broadcasting 개념 (0) | 2022.02.24 |
댓글