[알각코] 백준 1152번 - 단어의 개수

백준 1152번

sentence = input()

wList = sentence.split(' ')

print(len(wList))

Screen Shot 2021-08-04 at 5 38 30 PM

ㅋㅋㅋㅋ 이건 앞뒤 공백칸이 들어갔을 때 틀린당

sentence = input()

wList = sentence.split(' ')

if '' == wList[0]:
    del wList[0]
if '' == wList[-1]:
    del wList[-1]

print(len(wList))

Screen Shot 2021-08-04 at 5 45 25 PM

뭐지…이렇게하는건가…?

print(len(input().split()))

찾아보니 split 메소드 디폴트가 띄어쓰기를 생략해주고 리스트를 만들어주는 아이였당

그래서 그냥 이렇게 바로 해결