프로그래머스의 코딩테스트 연습문제 중 자릿수 더하기 문제의 정답입니다.

Python 코드


  def solution(n):
    return sum([int(x) for x in str(n)])



감사합니다!