본문 바로가기

개발자 레니는 지금 -/소프트웨어와 함께

[ Python ] map() 함수



Python

map() 함수








 시작 전 테스트환경 살피기

   Time

    2017년 08월 18일

   OS

    Linux(Ubuntu 16.04 LTS)

   Language

    Python 2.7






Apply function to every item of iterable and return a list of the results. If additional iterable arguments are passed, function must take that many arguments and is applied to the items from all iterables in parallel. If one iterable is shorter than another it is assumed to be extended with None items. If function is None, the identity function is assumed; if there are multiple arguments,  map() returns a list consisting of tuples containing the corresponding items from all iterables (a kind of transpose operation). The iterable arguments may be a sequence or any iterable object; the result is always a list.


built-in 함수로 list 나 dictionary와 같은 데이터를 인자로 받아 각 개별 item( list_of_inputs)을 함수( funcion_to_apply)의 인자로 전달하여 결과를 list형태로 반환해 주는 함수이다.

>> 인자로 받은 함수의 결과 값들을 모아 list로 반환한다.



>>> def plus(x): return x+1

... 

>>> map(plus, [1, 2, 3, 4])

[2, 3, 4, 5]



 

>>> x={1:10, 2:20, 3:30}

>>> map(plus, x)

[2, 3, 4]




>>> map(plus, [x[i] for i in x])

[11, 21, 31]