리스트 원소들의 길이를 전부 알고 싶을 때 

 

inpl = [[1, 2], [3, 4], [5]]

def solution(mylist):
    answer = list(map(len, mylist))
    return answer

print(solution(inpl))

실행 결과

 

Iterable의 모든 멤버의 type을 변환

def solution(mylist):
    mylist = list(map(int, mylist))
    return mylist


mylist = ['1', '100', '33']

print(solution(mylist))

실행 결과

['1', '100', '33'] -> [1, 100, 33]

문자 타입이 숫자 타입으로 변경되었다. 

 

 

 

sequence 멤버를 하나로 이어붙이기

ml = ['11', '22', '333']

def solution(mylist):
    answer = ''.join(mylist)
    return answer

print(solution(ml))

실행 결과

 

728x90

+ Recent posts