백준 1152번
sentence = input()
wList = sentence.split(' ')
print(len(wList))
ㅋㅋㅋㅋ 이건 앞뒤 공백칸이 들어갔을 때 틀린당
sentence = input()
wList = sentence.split(' ')
if '' == wList[0]:
del wList[0]
if '' == wList[-1]:
del wList[-1]
print(len(wList))
뭐지…이렇게하는건가…?
print(len(input().split()))
찾아보니 split
메소드 디폴트가 띄어쓰기를 생략해주고 리스트를 만들어주는 아이였당
그래서 그냥 이렇게 바로 해결