파이썬에서 제공하는 딕셔너리 관련해서 편리한 모듈 세가지를 알아보자 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..