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 | 31 |
Tags
- 텐서플로
- 코딩더매트릭스
- tensorflow
- LSTM
- 주식분석
- collections
- C언어
- 알고리즘
- 하이브
- effective python
- recursion
- codingthematrix
- 하둡2
- Java
- python
- hive
- NumPy
- 파이썬
- scrapy
- Sort
- GRU
- C
- yarn
- 딥러닝
- RNN
- HelloWorld
- 선형대수
- 그래프이론
- graph
- hadoop2
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