파이썬의 내장함수(Built-in Function)인 map() 함수에 대해 알아보겠습니다. map(function, iterable, *iterables) iterable의 모든 항목에 function(함수)을 적용하여 결과를 산출하는 반복자를 반환합니다. iterables 처럼 반복 가능한 여러 인수를 사용할 수 있으며, iterables의 항목에 병렬로 적용됩니다. 여러 iterable을 사용하면 가장 짧은 iterable이 소진되면 반복자가 중지됩니다. 예제 1 리스트의 각 단어의 길이를 계산합니다. words = ['apple', 'banana', 'cherry'] word_lengths = list(map(len, words)) print(word_lengths) (Output) [5, 6, ..