[121] 리스트의 모든 오소의 합 구하기(sum)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

listdata = [2,2,1,3,8,5,7,6,3,6,2,3,9,4,4] ret = sum(listdata) print(ret) ```

Comments