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
- trivial solution
- linear dependence
- one-to-one
- matrix fo a linear transformation
- matrix-vector product
- matrix trnasformations
- python
- 일차변환
- 코틀린 시작하기
- Big-O 예제
- Big-Oh 예제
- 빅오 표기법
- Big-Oh notation
- 빅오메가
- 알고리즘 분석의 실례
- recursive algorithms
- 재귀함수
- Big Omega
- nontrivial solution
- NumPy
- 코틀린 Hello World!
- 이진 탐색
- solutions of matrix equation
- 빅세타
- Big Theta
- itertools
- nonhomogeneous linear system
- 배열 섞기
- 랜덤 순서 배열
- homogeneous linear system
Archives
- Today
- Total
목록파이썬 (1)
코딩 연습
(파이썬) itertools 모듈의 count 함수
파이썬의 itertools 모듈에는 다음과 같은 count 라는 함수가 있다. def count(start=0, step=1): # count(10) --> 10 11 12 13 14 ... # count(2.5, 0.5) -> 2.5 3.0 3.5 ... n = start while True: yield n n += step 위에서 보는 바와 같이 함수 count 는 두 개의 매개 변수 start 와 step 을 갖고, 이들의 기본값(default value)는 각각 0과 1로 설정되어 있다. 함수의 설명에서 알 수 있듯이 count 함수는 start 로부터 시작하여 step 만큼 떨어진 수들을 무한히 생성하는 무한 반복자를 리턴한다. 다음의 예제를 보면 쉽게 이해할 수 있다. >>> for i in ..
Python
2017. 3. 21. 23:42