📌 defaultdict란? defaultdict는 collections 모듈에 내장된 유사 딕셔너리로 딕셔너리를 만드는 클래스인 dict의 서브클래스이다. 파이썬의 기존 딕셔너리와 다른 점은 key값이 없을 경우 지정해둔 디폴트값을 반환한다는 점이다. 아래 파이썬 공식 문서를 참조하면 더 자세한 정보를 알 수 있다. https://docs.python.org/3/library/collections.html#collections.defaultdict collections — Container datatypes — Python 3.10.7 documentation collections — Container datatypes Source code: Lib/collections/__init__.py This ..