728x90
def solution(num_str):
answer = 0
num_list = list(num_str)
data_r = list(map(int, num_list))
answer = sum(data_r)
return answer
# solution=lambda s:sum(map(int,s))
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 문자열을 정수로 변환하기(Python) (0) | 2023.08.31 |
---|---|
프로그래머스 스쿨 - 문자열로 변환(Python) (0) | 2023.08.30 |
프로그래머스 스쿨 - 문자열 앞의 n글자(Python) (0) | 2023.08.28 |
프로그래머스 스쿨 - 문자열 안에 문자열(Python) (0) | 2023.08.27 |
프로그래머스 스쿨 - 문자열 뒤의 n글자(Python) (0) | 2023.08.26 |