without haste but without rest
Iterable vs sequence 본문
Iterable
이터러블은 제너레이터 형태로 요청 시 필요한 데이터를 생성해서 리턴한다.
시간복잡도 O(n)
Sequence
배열을 미리 다 만들어둔 상태에서 리턴하는 형태
시간복잡도 O(1)
'ProgrammingLanguage > Python' 카테고리의 다른 글
Python pytest - ModuleNotFoundError: No module named (0) | 2022.04.15 |
---|---|
pip uninstall all (0) | 2022.03.23 |
pyenv for macOS (0) | 2022.02.10 |
파이썬 필드 밑줄의 의미와 프로퍼티 (0) | 2022.02.04 |
[Python3] 데코레이터, 클로저 (0) | 2021.10.19 |
Comments