파이썬 기초체력이 없음을 느꼈따. 이 간극을 위해 파이썬을 파이썬답게를 들어보기로 한다.
iterable: 자신의 멤버를 한 번에 리턴할 수 있는 객체. list, str, tuple, dict 등이 여기에 속함. sequence: int 타입 인덱스를 통해, 원소에 접근할 수 있는 iterable. list, str, tuple이 여기에 속함.
def solution(mylist): return list(map(len, mylist))