Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- python
- Java
- hadoop2
- LSTM
- 선형대수
- effective python
- yarn
- graph
- C언어
- collections
- GRU
- 딥러닝
- 하둡2
- 텐서플로
- tensorflow
- RNN
- hive
- scrapy
- recursion
- 파이썬
- Sort
- 알고리즘
- HelloWorld
- 주식분석
- 하이브
- C
- codingthematrix
- 코딩더매트릭스
- 그래프이론
- NumPy
Archives
- Today
- Total
목록default_factory (1)
EXCELSIOR
collections 모듈 - defaultdict
collections.defaultdict 1. defaultdict란 collections.defaultdict는 딕셔너리(dictionary)와 거의 비슷하지만 key값이 없을 경우 미리 지정해 놓은 초기(default)값을 반환하는 dictionary이다. defaultdict과 관련하여 자세한 내용은 docs.python.org에서 확인할 수 있다. 예제의 소스코드를 통해 dict(기본 딕셔너리)와 defaultdict를 비교해보면, 예제(1-1)에서 기본 딕셔너리는 해당 키가 없는 값을 출력할 경우 KeyError Exception 에러가 나타난다. 반면에 예제(1-2)에서 defaultdict는 default_factory()라는 함수로 초기값(default)를 null로 지정해줬기 때문에 해..
Python/자료구조
2017. 8. 18. 23:38