본문 바로가기
Python

[Python] Collections - Counter 객체로 key, value 쌍 생성

by 하응 2023. 6. 13.

- 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)

 

 

 

 

 

반응형

댓글