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
- python
- 빅오메가
- 배열 섞기
- nontrivial solution
- 알고리즘 분석의 실례
- 재귀함수
- 랜덤 순서 배열
- itertools
- Big Omega
- 일차변환
- 빅오 표기법
- Big Theta
- matrix trnasformations
- solutions of matrix equation
- Big-Oh notation
- Big-Oh 예제
- matrix fo a linear transformation
- 빅세타
- 코틀린 Hello World!
- recursive algorithms
- matrix-vector product
- homogeneous linear system
- linear dependence
- nonhomogeneous linear system
- NumPy
- 이진 탐색
- one-to-one
- 코틀린 시작하기
- trivial solution
- Big-O 예제
Archives
- Today
- Total
목록takewhile (1)
코딩 연습
(파이썬) itertools 모듈의 takewhile 함수
파이썬의 itertools 모듈에는 다음과 같은 takewhile 함수가 있다. def takewhile(predicate, iterable): for x in iterable: if predicate(x): yield x else: break 이 함수는 두 개의 매개변수 predicate 와 iterable 을 갖는다. predicate 는 True 나 False 를 리턴하는 함수라고 보면 되고, iterable 은 리스트, 튜플, 문자열과 같이 각각의 요소에 접근할 수 있는 자료형이라고 보면 된다. takewhile 함수는 iterable 의 각각의 요소에 순서대로 접근하여 prediacte 이 참이 될 때까지의 요소만으로 이루어진 반복자를 리턴하는 함수다. 다음의 예제를 보면 쉽게 이해할 수 있다...
Python
2017. 3. 22. 00:31