반응형
파이썬에서 제공하는 딕셔너리 관련해서 편리한 모듈 세가지를 알아보자
1. defaultdict
딕셔너리에서 입력되지 않은 키로 조회하는 경우 에러가 발생하는데, defaultdict로 정의하면 입력되지 않은 키로 조회할 경우 default값으로 조회된다.
defaultdict( 정의하고 싶은 디폴트 값 )
import collections
a = collections.defaultdict(int)
a['A'] # 출력 > 0
a = collections.defaultdict(float)
a['A'] # 출력 > 0.0
a = collections.defaultdict(bool)
a['A'] # 출력 > False
a = collections.defaultdict(str)
a['A'] # 출력 > ''
a = collections.defaultdict(lambda: 1)
a['A'] # 출력 > 1
a = collections.defaultdict(lambda: '하나')
a['A'] += '안녕'
a['A'] # 출력 > '하나안녕'
2. Counter
아이템에 대한 개수를 계산해 딕셔너리로 반환 해준다.
import collections
a = [0,1,1,2,2,2,4]
b = collections.Counter(a)
b
#출력 > Counter({0:1, 1:2, 2:3 ,4:0})
## 빈도 높은 항목 출력
b.most_common(1)
#출력 [(2,3)]
b.most_common(2)
#출력 [(2,3), (1,2)]
반응형
'Today I Learned > Python & Pandas' 카테고리의 다른 글
(파이썬 자료형) 가변 객체 & 불변 객체 (0) | 2023.08.21 |
---|---|
python class 기초 개념 정리 & 실습1 (점프투파이썬 따라가기) (0) | 2023.07.12 |
[Python] 리스트 슬라이싱 [ : ] List Slicing (0) | 2023.07.06 |
파이썬(Python) array, list, tuple, set 함수 및 특징 정리 (0) | 2023.06.08 |
[Python] 네이버 데이터랩 크롤링 (BeautifulSoup & Selenium) (1) | 2020.11.04 |