728x90
def solution(strlist):
answer = []
for i in strlist:
answer.append(len(i))
return answer
728x90
'CodingTest > [프로그래머스 LV.0]' 카테고리의 다른 글
프로그래머스 LV.0 - 나이 출력[Python] (0) | 2023.01.20 |
---|---|
프로그래머스 LV.0 - 짝수의 합[Python] (0) | 2023.01.20 |
프로그래머스 LV.0 - 배열 뒤집기[Python] (0) | 2023.01.20 |
프로그래머스 LV.0 - 짝수 홀수 개수[Python] (0) | 2023.01.20 |
프로그래머스 LV.0 - 중복된 숫자 개수[Python] (0) | 2023.01.20 |