-
풀이 sentence = input().split() cnt = 0 for sentences in sentence : cnt += 1 print(cnt) 휴우 split 함수를 잘못써서 잠시 고생했지만, 결국 풀었다! 다행히 그렇게 어렵진 않았던 것 같다. sentence = input().split() 사실상 첫 줄 입력받은 문자를 split 하면서 금방 해결된 듯 하다.