출처 : 윤성우의 열혈 파이썬 : 중급
08. 두 함수를 대신하는 리스트 컴프리헨션
map과 filter를 대신하는 리스트 컴프리헨션
st1 = [1, 2, 3]
st2 = list(map(lambda n: n**2, st1))
st2 = [n**2 for n in st1]
st = [1, 2, 3, 4, 5]
ost = list(filter(lambda n: n % 2, st))
ost = [n for n in st if n % 2]
st = list(range(1, 11))
fst = list(map(lambda n: n**2, filter(lambda n: n % 2, st)))
fst = [n**2 for n in st if n % 2]
- map에 filter까지 더해지는 상황에서는 확실히 리스트 컴프리헨션 기반의 코드가 더욱 간결