본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#34 백준 파이썬 [1152] 단어의 개수

#34 백준[1152] 단어의 개수



https://www.acmicpc.net/submit/1152






#Solution


sentence_list = []

sentence_list = list(map(str, input().split()))
print(len(sentence_list))