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
- NumPy
- hadoop2
- scrapy
- 하둡2
- C
- python
- GRU
- recursion
- tensorflow
- 코딩더매트릭스
- C언어
- 딥러닝
- graph
- 파이썬
- codingthematrix
- yarn
- hive
- 하이브
- Java
- effective python
- LSTM
- 선형대수
- 주식분석
- RNN
- 텐서플로
- 알고리즘
- collections
- HelloWorld
- Sort
- 그래프이론
Archives
- Today
- Total
목록OrderedDict (1)
EXCELSIOR
collections 모듈 - OrderedDict
collections.OrderedDict 1. OrederedDict 란? OrderedDict 는 기본 딕셔너리(dictionary)와 거의 비슷하지만, 입력된 아이템들(items)의 순서를 기억하는 Dictionary 클래스이다. collections.OrderedDict의 자세한 내용은 docs.python.org에서 확인 할 수 있다. OrderedDict 는 아이템들(items)의 입력(또는 삽입) 순서를 기억하기 때문에 sorted()함수를 사용하여 정렬된 딕셔너리(sorted dictionary)를 만들때 사용할 수 있다. 아래 [예제1]은 sorted dictionary 를 만드는 예제이다. 123456789101112131415161718192021222324252627282930313..
Python/자료구조
2017. 9. 7. 13:54