Python dictionary1 [Python] 파이썬 defaultdict() 함수 ? [Python] 파이썬 defaultdict() 함수 ? 코딩도장에서 문제를 풀다가 Collection모듈에서 defaultdict()함수를 사용하는걸 봤다. 공부할 겸 정리. Collection 에서 불러오기from collections import defaultdic defaultdic() 이라는 함수는 dictionary에 기본값을 정의하고 키값이 없더라도 에러가 나지 않고 그냥 기본값만 출력해준다. Default dictionary를 생성하고, 기본값(Default값 설정)d = defaultdict(object) d = defaultdict(lambda : 0 ) # Default 값 0으로 설정 이제 생성한 dictionary인 d에다가 키이름을 붙여주면, 키값을 따로 설정하지 않아도 에러가 .. 2017. 11. 3. 이전 1 다음