-
python에서 inline function활용을 위해 이해하면 도움되는 개념.
iterable만들기
list1 = [x for x in [11,22,33]] # 에서 for문은 iterable로 만들어진다.
# v = lambda x: x * 10 # lambda로 ..
# 함수내에서 yield를 사용하여..
iterable사용
list(x for x in [11,22,33])
tuple(x for x in [11,22,33])
'Python' 카테고리의 다른 글
Python - generator expression (0) 2020.09.07 Python - 함수 인수 (0) 2020.09.06 Python - 사칙연산 관련 '//' '**' (0) 2020.09.06 Python - bisect 함수 (0) 2020.09.06 Python - product (0) 2020.09.06 Python - deque (0) 2020.09.06 Python - combination 클래스 함수 (0) 2020.09.06 Python - permutations 클래스 함수 (0) 2020.09.06