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
- matrix trnasformations
- recursive algorithms
- 알고리즘 분석의 실례
- 빅세타
- Big Omega
- matrix fo a linear transformation
- Big-Oh notation
- Big Theta
- trivial solution
- 코틀린 시작하기
- Big-Oh 예제
- nonhomogeneous linear system
- NumPy
- 빅오 표기법
- 랜덤 순서 배열
- 빅오메가
- Big-O 예제
- solutions of matrix equation
- python
- one-to-one
- nontrivial solution
- 일차변환
- matrix-vector product
- 이진 탐색
- itertools
- homogeneous linear system
- 재귀함수
- 코틀린 Hello World!
- 배열 섞기
- linear dependence
Archives
- Today
- Total
목록파이썬 내장함수 all (1)
코딩 연습
(파이썬) Python 내장함수 all
파이썬의 내장함수 all 은 다음과 같다. def all(iterable): for element in iterable: if not element: return False return True 함수 all 은 매개변수로 iterable (리스트, 튜플, 딕셔너리 등등) 를 갖는다. 함수 all 은 iterable 내의 모든 요소가 참이거나 혹은 iterable 이 비어 있다면 True 를 반환하고, 그 외의 경우에는 False 를 반환하는 함수이다. 즉, iterable 내의 요소 중 단 하나라도 거짓인 경우에는 False 를 반환한다. 파이썬에서는 0을 False 로 1은 True 로 인식한다. 다음의 예제를 보면 쉽게 이해할 수 있다. >>> all([]) True >>> all([1, 2, 3, ..
Python
2017. 3. 24. 01:38