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
- 알고리즘
- GRU
- graph
- collections
- HelloWorld
- scrapy
- hadoop2
- 딥러닝
- C
- effective python
- tensorflow
- 주식분석
- hive
- python
- yarn
- 코딩더매트릭스
- LSTM
- Java
- 하둡2
- recursion
- RNN
- Sort
- 파이썬
- 하이브
- codingthematrix
- NumPy
- 그래프이론
- 선형대수
- C언어
- 텐서플로
Archives
- Today
- Total
목록namedtuple (1)
EXCELSIOR
collections 모듈 - namedtuple
collections.namedtuple() 1. namedtuple이란 명칭 그대로 index(idx)로만 값(value)에 접근 가능한 기본 투플(basic Tuple)과는 다르게 키(key)값으로 접근가능하도록 제공한다. 키(namedtuple에서는 field_names)를 가지고 값에 접근이 가능하다는 부분이 딕셔너리(dict)타입과 비슷하다고 할 수 있다. namedtuple()에 대한 자세한 내용은 docs.python.org에서 확인할 수 있다. namedtupled()은 collections.namedtuple(typename, field_names, verbose=False, rename=False)을 입력값으로 받으며, field_names 를 통해 namedtuple()의 키 즉, 필..
Python/자료구조
2017. 8. 22. 22:28