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]
|
'개발자 레니는 지금 - > 소프트웨어와 함께' 카테고리의 다른 글
[ Python ] Threading GIL 정의 (0) | 2017.08.24 |
---|---|
[ Python ] Python Documents (0) | 2017.08.24 |
[ Python ] range()와 xrange()의 차이 (0) | 2017.08.24 |
[ Python ] Pickle! binary를 file에 자료형 그대로 저장하기! (0) | 2017.08.18 |
[ Python ] 시스템 명령어 실행하기 (0) | 2017.08.18 |