반응형
표준 입력으로 문자열이 입력됩니다. 입력된 문자열에서 '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 |
반응형
'Python > 코딩도장' 카테고리의 다른 글
코딩도장_파이썬 심사문제 25.8 (딕셔너리에서 특정 값 삭제하기) (0) | 2020.08.03 |
---|---|
코딩도장_파이썬 심사문제 24.6 (높은 가격순으로 출력하기) (0) | 2020.08.03 |
코딩도장_파이썬 심사문제 22.10 (2의 거듭제곱 리스트 생성하기) (0) | 2020.07.30 |
코딩도장_파이썬 심사문제 21.6 (별 그리기) (0) | 2020.07.28 |
코딩도장_파이썬 심사문제 20.8 (5와 7의 배수,공배수 처리하기) (0) | 2020.07.28 |
댓글