본문 바로가기
Python/코딩도장

코딩도장_파이썬 심사문제 24.5 (특정 단어 개수 세기)

by 비전공자 기록광 2020. 8. 3.
반응형

표준 입력으로 문자열이 입력됩니다. 입력된 문자열에서 'the'의 개수를 출력하는 프로그램을 만드세요(input에서 안내 문자열은 출력하지 않아야 합니다). 단, 모든 문자가 소문자인 'the'만 찾으면 되며 'them', 'there', 'their' 등은 포함하지 않아야 합니다.

 

문제

1
2
3
4
5
6
7
________________
________________
________________
________________
________________
________________
________________
cs

 

 

입력

the grown-ups' response, this time, was to advise me to lay aside my drawings of boa constrictors, whether from the inside or the outside, and devote myself instead to geography, history, arithmetic, and grammar. That is why, at the, age of six, I gave up what might have been a magnificent career as a painter. I had been disheartened by the failure of my Drawing Number One and my Drawing Number Two. Grown-ups never understand anything by themselves, and it is tiresome for children to be always and forever explaining things to the.

 

결과

6


 

1
2
3
4
5
6
paragraph=input().split()
count=0
for words in paragraph:  #for문으로 문자열이 'the'인지 판단
    if (words.strip(',.')=='the'):
        count+=1  #'the'맞으면 count에 1씩 적립
print(count)
cs

 

반응형

댓글