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
- homogeneous linear system
- NumPy
- Big Theta
- matrix fo a linear transformation
- 알고리즘 분석의 실례
- 일차변환
- itertools
- 랜덤 순서 배열
- matrix-vector product
- 배열 섞기
- 빅오 표기법
- nontrivial solution
- 빅오메가
- Big Omega
- nonhomogeneous linear system
- 코틀린 Hello World!
- python
- one-to-one
- trivial solution
- matrix trnasformations
- 코틀린 시작하기
- Big-Oh 예제
- 빅세타
- 재귀함수
- Big-Oh notation
- solutions of matrix equation
- recursive algorithms
- Big-O 예제
- 이진 탐색
- linear dependence
Archives
- Today
- Total
코딩 연습
(파이썬) Python 내장함수 enumerate 본문
반응형
enumerate 함수는 다음과 같다.
def enumerate(sequence, start=0):
n = start
for elem in sequence:
yield n, elem
n += 1
enumerate 함수는 두 개의 매개변수 sequence, start 를 갖는다. 쉽게 말해서 enumerate 함수는 sequence 의 각각의 요소에 index 를 붙인 튜플을 생성하는 반복자를 리턴하는 함수라고 생각하면 된다. 내가 써 놓고도 무슨 말인지 하나도 모르겠다. 다음의 예제를 보면 한방에 이해가 간다는 것을 믿어 의심치 않는다.
>>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
>>> list(enumerate(seasons))
[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
>>> list(enumerate(seasons, start=1))
[(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]
start 의 기본값이 0으로 설정되어 있기 때문에, start 값을 전달하지 않으면 index 는 0부터 시작하게 된다. 따로 start 값을 전달하는 경우 index 는 전달된 start 값에서 시작하여 1씩 증가하게 된다.
반응형
'Python' 카테고리의 다른 글
(파이썬) Python 내장함수 all (0) | 2017.03.24 |
---|---|
(파이썬) functools 모듈의 reduce 함수 (0) | 2017.03.23 |
(파이썬) itertools 모듈의 takewhile 함수 (0) | 2017.03.22 |
(파이썬) itertools 모듈의 count 함수 (0) | 2017.03.21 |
(파이썬) 순열 -모든 경우 나열하기 (0) | 2017.03.21 |
Comments