iterable의 각 항목에 function을 적용한 map 객체 리턴
def 함수이름(매개변수1, ..., 매개변수n): return 매개변수를 이용한 표현식
list(map(lambda a: a*2, [1, 2, 3, 4]))
[2, 4, 6, 8]