728x90
def solution(n):
answer = 0
len_n=len(str(n))
for i in range(len_n):
answer += (n%10)
n = n//10
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] 제일 작은 수 제거하기,python3 (0) | 2019.10.19 |
---|---|
[프로그래머스] LEVEL1 정수 내림차순으로 배치하기,python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 이상한 문자 만들기, python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 시저암호, python3 (0) | 2019.10.17 |
[프로그래머스] LEVEL1 문자열을 정수로 바꾸기, 수박수박수?, python3 (0) | 2019.10.17 |