https://www.acmicpc.net/problem/10821
s = list(map(str, input().split(','))) cnt = 0 for i in s: cnt += 1 print(cnt)
split(',')을 이용하여 콤마(,)마다 값을 잘라서 s에 저장했습니다. for문을 이용해 cnt에 리스트의 값의 개수를 추가했습니다.