Python 3에서 필터, 맵 및 축소를 사용하는 방법
filter, map그리고 reduce완벽하게 파이썬 2. 다음의 작업은 예입니다 : >>> def f(x): return x % 2 != 0 and x % 3 != 0 >>> filter(f, range(2, 25)) [5, 7, 11, 13, 17, 19, 23] >>> def cube(x): return x*x*x >>> map(cube, range(1, 11)) [1, 8, 27, 64, 125, 216, …